Xorg.conf - Acer 2016W screen

Hello,
yesterday I bought a new screen (acer 2016W) and I'd like to know how I should reconfigure my xorg.conf to be able to use its maximal resolution (1680*1050). I suppose I should add a line in the modelines but I don't know how.
By the alsa suppose I should replace the "DPMS" option by "LCD" - Am I right?
Thanks

This is what I changed when adding an LCD widescreen. I also connect mine via DVI.
Section "Monitor"
Identifier "Monitor0"
VendorName "Acer"
ModelName "AL2051W"
VertRefresh 60.0
Option "DPMS"
EndSection
Section "Device"
Identifier "Card0"
Driver "nvidia"
VendorName "nVidia Corporation"
BoardName "GeForce 7600GS AGP"
Option "NoLogo" "true"
Option "RenderAccel" "true"
Option "AllowGLXWithComposite" "true"
Option "ConnectedMonitor" "DFP"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 16
Modes "1680x1050"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1680x1050"
EndSubSection
EndSection

Similar Messages

  • Xorg.conf Acer Aspire 3000 xinerama [request][SOLVED]

    Anyone having an acer aspire 3000 laptop with xinerama working?
    Or anyone with a "sis" driver laptop with xinerama?
    I would be very very grateful if someone could post a working xorg.conf file with xinerama working for any of the above setups.
    Been struggling all night with this and can't get it to work.
    Or does anyone know of any tutorial that works to get xinerama up and running?
    Ask2

    This xorg.conf works. Acer Aspire 3000
    Xinerama works nicely except its very very slow and locks up computer during some screen events, like moving a terminal and stuff.
    Section "Files"
        RgbPath      "/usr/share/X11/rgb"
        ModulePath   "/usr/lib/xorg/modules"
        FontPath     "/usr/share/fonts/100dpi"
        FontPath     "/usr/share/fonts/TTF"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/75dpi"
    EndSection
    Section "Module"
       Load  "ddc"  # ddc probing of monitor
        Load  "dbe"
        Load  "dri"
        Load  "extmod"
       Load  "bitmap" # bitmap-fonts
        Load  "type1"
        Load  "freetype"
        Load  "record"
    EndSection
    Section "InputDevice"
        Identifier  "Keyboard1"
        Driver      "keyboard"
       Option      "CoreKeyboard"
        Option "XkbRules" "xorg"
        Option "XkbModel" "pc105"
        Option "XkbLayout" "se"
    EndSection
    Section "InputDevice"
        Identifier  "PS/2 Mouse"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option          "ZAxisMapping"          "4 5"
        Option      "Device" "/dev/psaux"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "70"
        Option        "SendCoreEvents"  "true"
    EndSection
    Section "InputDevice"
            Identifier      "USB Mouse"
            Driver          "mouse"
            Option          "Device"                "/dev/input/mice"
            Option          "Protocol"              "IMPS/2"
            Option          "ZAxisMapping"          "4 5"
            Option          "Buttons"               "5"
    EndSection
    Section "Extensions"
        Option "Composite" "true"
    EndSection
    Section "ServerFlags"
        Option "AllowMouseOpenFail"  "true"
    EndSection
    Section "Device"
       Identifier  "Videocard0"
       Driver      "sis"
       BusID       "PCI:01:00:0"
       Screen      0
       Option      "DDC"             "0"
       Option      "VBERestore"      "0"
       Option      "UseFBDev"        "true"
    EndSection
    Section "Device"
       Identifier  "Videocard1"
       Driver      "sis"
       BusID       "PCI:01:00:0"
       Screen      1
       Option      "DDC"             "0"
       Option      "VBERestore"      "0"
       Option      "UseFBDev"        "true"
    EndSection
    Section "Monitor"
       Identifier  "Laptop LCD"
       Option      "DPMS"
       HorizSync   28-96
       VertRefresh 50-75
    EndSection
    Section "Monitor"
       Identifier  "Desktop LCD"
       Option      "DPMS"
       HorizSync   28-96
       VertRefresh 50-75
    EndSection
    Section "Screen"
       Identifier     "Screen0"
       Device         "Videocard0"
       Monitor        "Laptop LCD"
       DefaultDepth   24
       SubSection "Display"
          Depth       24
          Modes       "1024x768"
       EndSubSection
    EndSection
    Section "Screen"
       Identifier     "Screen1"
       Device         "Videocard1"
       Monitor        "Desktop LCD"
       DefaultDepth   24
       SubSection "Display"
          Depth       24
          Modes       "1280x1024"
       EndSubSection
    EndSection
    Section "ServerLayout"
       Identifier           "DefaultLayout"
       Screen               0  "Screen0"
       Screen               1  "Screen1"   LeftOf   "Screen0"
       InputDevice          "Keyboard0"
       InputDevice          "PS/2 Mouse"
       Option               "Xinerama"
       #Option               "Clone"  "Off"
    EndSection
    Section "DRI"
        Mode 0666
    EndSection

  • 5-screen (multi-monitor) nVidia xorg.conf -- my setup

    Hi. I would like to share my xorg.conf, since it took forever to get right.
    There isn't a lot of information out there for folks using > 2 monitors, or several graphics cards, or esoteric setups including rotation etc. I hope this will be useful; I wouldn't mind contributing to the wiki if anybody thinks it might be useful.
    So first up: hardware. I have
    nVidia GeForce GTX 550 Ti connected to a 24" monitor (in the middle)
    nVidia GeForce 210 connected to two 19" monitors, rotated into portrait (on either side of the 24")
    nVidia GeForce GT 440 connected to two 15" monitors (above the 24")
    here is a picture of the monitors, click for a bigger version
    Drivers: I'm using the official nVidia drivers, I couldn't get nouveau to work. Since I am using Xinerama, the XRandR extension isn't loaded -- therefore my setup won't be suitable for people whose screen configuration changes dynamically. But I'd prefer not to use Xinerama, and even to use nouveau if possible; if anybody has a similar configuration working with nouveau, please share
    Finally, the actual config itself. Here it is on pastebin.
    Rotation
    The correct way to rotate monitors in xorg.conf is through the metamodes option of the Screen section. On my Screen 2 and 4 (the two 19" monitors), you can see that
    { Rotation = left }
    has been added at the end of the metamodes option. Contrary to some other guides floating around, it is not necessary to specify these options:
    # Unnecessary
    Option "RandRRotate" "on"
    Option "Rotate" "right"
    I believe these come from an earlier version of Xorg. They don't have any effect when I put them in my xorg.conf, using Xorg 1.12.4 and nVidia 304.43.
    Even when I specified rotate in metamodes, my monitors didn't appear to rotate because I had originally written
    Option "metamodes" "CRT-1: nvidia-auto-select +0+0 { Rotation = left} "
    instead of
    Option "metamodes" "DFP-1: nvidia-auto-select +0+0 { Rotation = left} "
    This just made rotation fail silently, with no error message. Make sure to specify DFP if you're using a digital output (DVI, HDMI, DP) and CRT only if you're using a VGA output on your graphics board.
    Tips
    When you're testing out a new Xorg.conf, you can use
    startx -- :1
    to start a new X server without killing the current one. See if your configuration works, then switch back to your original X server by pressing Cmd-Alt-F7.
    You should also keep a log of different configurations you have tried. You can use a version control system like git to track changes to your Xorg.conf; make sure you document every change you have made, and why, it can prove invaluable later on.
    Feel free to ask about this setup. I would like to know something: what is the function of the Screen option in the Device section? On the four Device entries for my nVidia 210 and 440 cards, there is an option called Screen; when I take it out, the setup breaks. Why are they there? And why do they not map to the screen numbers in the Screen section? (They are numbered 0, 0, 1, 1 rather than 1, 2, 3, 4)

    Thank you for the reply. I read the wiki page, but unfortunately I am still struggling with my two nvidia gpu, three monitor setup.
    The red arrows show the pointer progression through the monitors (moving mouse left to right). When the cursor is on the top monitor, it becomes an X, and the screen is black.
    Here is the matching xorg.conf
    # nvidia-settings: X configuration file generated by nvidia-settings
    # nvidia-settings: version 331.67 (buildmeister@swio-display-x86-rhel47-08) Fri Apr 4 12:26:05 PDT 2014
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    Option "Xinerama" "0"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Acer G236HL"
    HorizSync 30.0 - 80.0
    VertRefresh 55.0 - 75.0
    Option "DPMS"
    EndSection
    Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "Monitor1"
    VendorName "Unknown"
    ModelName "Acer X223W"
    HorizSync 31.0 - 83.0
    VertRefresh 56.0 - 75.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 9600 GT"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    Identifier "Device1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce GT 610"
    BusID "PCI:2:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "Stereo" "0"
    Option "nvidiaXineramaInfoOrder" "CRT-1"
    Option "metamodes" "VGA-0: nvidia-auto-select +0+0, DVI-I-1: nvidia-auto-select +1920+0"
    Option "SLI" "Off"
    Option "MultiGPU" "Off"
    Option "BaseMosaic" "off"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Device1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "Stereo" "0"
    Option "nvidiaXineramaInfoOrder" "CRT-1"
    Option "metamodes" "nvidia-auto-select +0+0"
    Option "SLI" "Off"
    Option "MultiGPU" "Off"
    Option "BaseMosaic" "off"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Based on this post on archlinux, I took a crack at matching the xorg.conf pattern above (monitor/device/screen sections) with my own. I took it as a victory that it actually didn't error (many xorg.conf experiments have in the last couple of days have). Here is my new xorg.conf with 3 screens/3 monitors/3 devices:
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 331.67 (buildmeister@swio-display-x86-rhel47-08) Fri Apr 4 12:26:16 PDT 2014
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    Screen 2 "Screen2" RightOf "Screen1"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    Option "Xinerama" "1"
    EndSection
    Section "Files"
    EndSection
    Section "Module"
    Load "dbe"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "leftAcer"
    VendorName "Unknown"
    ModelName "Acer G236HL"
    HorizSync 30.0 - 80.0
    VertRefresh 55.0 - 75.0
    Option "DPMS"
    EndSection
    Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "rightAcer"
    VendorName "Unknown"
    ModelName "Acer G236HL"
    HorizSync 30.0 - 80.0
    VertRefresh 55.0 - 75.0
    Option "DPMS"
    EndSection
    Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "topAcer"
    VendorName "Unknown"
    ModelName "Acer X223W"
    HorizSync 31.0 - 83.0
    VertRefresh 56.0 - 75.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "geforce-9600-gt-0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 9600 GT"
    BusID "PCI:1:0:0"
    Screen 0
    EndSection
    Section "Device"
    Identifier "geforce-9600-gt-1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 9600 GT"
    BusID "PCI:1:0:0"
    Screen 1
    EndSection
    Section "Device"
    Identifier "geforce-gt-610"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce GT 610"
    BusID "PCI:2:0:0"
    Screen 1
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "geforce-9600-gt-0"
    Monitor "leftAcer"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "TwinViewXineramaInfoOrder" "DFP-0"
    Option "Stereo" "0"
    Option "nvidiaXineramaInfoOrder" "DFP-0"
    Option "MetaModes" "DFP: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "geforce-9600-gt-1"
    Monitor "rightAcer"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "TwinViewXineramaInfoOrder" "DFP-1"
    Option "Stereo" "0"
    Option "nvidiaXineramaInfoOrder" "DFP-1"
    Option "MetaModes" "DFP-1: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen2"
    Device "geforce-gt-610"
    Monitor "topAcer"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "TwinViewXineramaInfoOrder" "DFP-0"
    Option "Stereo" "0"
    Option "nvidiaXineramaInfoOrder" "DFP-0"
    Option "MetaModes" "DFP-0: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Disable"
    EndSection
    This what appears with the new xorg.conf:
    "leftAcer" and "rightAcer" appear, but nothing appears on "topAcer" (it appears not to be getting a signal from the gpu). I can move the mouse pointer between "leftAcer" and "rightAcer".
    Any help or advice would be greatly appreciated. Here are a few details about the hardware setup:
    GeForce 9600 GT is in the PCI:1 slot. It's DVI out is going to "acerLeft", it's VGA out is going to "acerRight".
    GeForce GT 610 is in PCI:2 slot. It's VGA out is going to "acerTop".
    thanks!

  • A single screen resolution in xorg.conf, YET X11 still startups wrong

    Hi. There's something that has been bugging me for a while. When I boot the first time my thinkpad SL500, usually (95% of the cases) X sets the resolution to 1024x768. Yet the ONLY screen res available in xorg.conf is 1280 x 800. In order to get to 1280x 800 I init 4 && init 5 every time. Why is this and how to fix it?
    xorg.conf:
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "dri2"
    Load "glx"
    Load "dri"
    Load "record"
    Load "dbe"
    Load "extmod"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "evdev"
    Option "XKbLayout" "de"
    Option "XkbVariant" "nodeadkeys"
    Option "XkbModel" "pc105"
    Option "XkbRules" "xorg"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    Option "SendCoreEvents" "true"
    Option "VertEdgeScroll" "on"
    Option "HorizEdgeScroll" "on"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    Modeline "1280x800@60" 83.91 1280 1312 1624 1656 800 816 824 841
    Modeline "1280x800" 104.35 1280 1360 1496 1712 800 801 804 835
    Modeline "1280x800" 88.68 1280 1352 1488 1696 800 801 804 830
    Gamma 0.70 0.70 0.70 # created by KGamma
    EndSection
    Section "Device"
    Identifier "Intel X4500MHD"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile 4 Series Chipset Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    Option "DRI" "true"
    Option "AccelMethod" "uxa"
    Option "MigrationHeuristic" "greedy"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Depth 24
    Modes "1280x800_60.00"
    Viewport 0 0
    EndSubSection
    EndSection
    And /var/log/Xorg.0.log (non-relevant stuff stripped, shows only (WW) or (EE) and related):
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.6.3.901 (1.6.4 RC 1)
    Release Date: 2009-8-25
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH x86_64
    Current Operating System: Linux evolution 2.6.31-ARCH #1 SMP PREEMPT Fri Oct 23 10:03:24 CEST 2009 x86_64
    Build Date: 04 September 2009 05:45:43PM
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Mouse0
    (**) Option "CoreKeyboard"
    (**) Keyboard0: always reports core events
    (EE) Keyboard0: No device specified.
    (II) UnloadModule: "evdev"
    (EE) PreInit returned NULL for "Keyboard0"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event11"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) intel(0): EDID vendor "LEN", prod id 16464
    (II) intel(0): Using EDID range info for horizontal sync
    (II) intel(0): Using EDID range info for vertical refresh
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 70.50 1280 1328 1360 1440 800 803 809 816 -hsync -vsync (49.0 kHz)
    (II) intel(0): Modeline "1280x800"x0.0 58.75 1280 1328 1360 1440 800 803 809 816 -hsync -vsync (40.8 kHz)
    (II) intel(0): EDID vendor "LEN", prod id 16464
    (II) intel(0): EDID vendor "LEN", prod id 16464
    (II) intel(0): Using hsync ranges from config file
    (II) intel(0): Using vrefresh ranges from config file
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 70.50 1280 1328 1360 1440 800 803 809 816 -hsync -vsync (49.0 kHz)
    (II) intel(0): Modeline "1280x800"x0.0 58.75 1280 1328 1360 1440 800 803 809 816 -hsync -vsync (40.8 kHz)
    (II) intel(0): EDID vendor "LEN", prod id 16464
    (II) intel(0): EDID vendor "LEN", prod id 16464
    (II) intel(0): Using hsync ranges from config file
    (II) intel(0): Using vrefresh ranges from config file
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 70.50 1280 1328 1360 1440 800 803 809 816 -hsync -vsync (49.0 kHz)
    (II) intel(0): Modeline "1280x800"x0.0 58.75 1280 1328 1360 1440 800 803 809 816 -hsync -vsync (40.8 kHz)
    (II) intel(0): EDID vendor "LEN", prod id 16464
    (II) intel(0): EDID vendor "LEN", prod id 16464
    (II) intel(0): Using hsync ranges from config file
    (II) intel(0): Using vrefresh ranges from config file
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 70.50 1280 1328 1360 1440 800 803 809 816 -hsync -vsync (49.0 kHz)
    (II) intel(0): Modeline "1280x800"x0.0 58.75 1280 1328 1360 1440 800 803 809 816 -hsync -vsync (40.8 kHz)
    (II) intel(0): EDID vendor "LEN", prod id 16464
    As you can see, there's also a problem with the keyboard. How to get it working? Currently the keyboard layout is set via my DM.
    Thanks.
    Last edited by Flavious (2009-10-26 08:30:48)

    As I understand it your xorg.conf file needs fixing: you have 3 modelines:
    Modeline "1280x800@60" 83.91 1280 1312 1624 1656 800 816 824 841
    Modeline "1280x800" 104.35 1280 1360 1496 1712 800 801 804 835
    Modeline "1280x800" 88.68 1280 1352 1488 1696 800 801 804 830
    in the Monitor section. Two of them have the same name, and in the in the Display section you are referring to a fourth mode "1280x800_60.00" that is never defined before.
    Instead find out the correct mode from you monitor specs, then compute its modeline via cvt, then put that modeline into the Monitor section and refer to it in the display section.

  • Turn off screen after a certain time in xorg.conf

    added
    Option "DPMS" "true"
    to monitor
    and
    Option "OffTime" "1"
    to serverflags
    and it doesn't work.
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder26) Thu Feb 14 18:13:41 PST 2008
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5) man page for details about the format of
    # this file.
    # Module section -- this section is used to specify
    # which dynamically loadable modules to load.
    # Files section. This allows default font and rgb paths to be set
    # Server flags section.
    # Input devices
    # Core keyboard's InputDevice section
    # Core Pointer's InputDevice section
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices. This is for example only. Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    # Identifier "Mouse2"
    # Driver "mouse"
    # Option "Protocol" "MouseMan"
    # Option "Device" "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball"
    # Driver "magellan"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball2"
    # Driver "spaceorb"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen0"
    # Driver "microtouch"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "1412"
    # Option "MaxX" "15184"
    # Option "MinY" "15372"
    # Option "MaxY" "1230"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen1"
    # Driver "elo2300"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "231"
    # Option "MaxX" "3868"
    # Option "MinY" "3858"
    # Option "MaxY" "272"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonThreshold" "17"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    # Device configured by xorgconfig:
    # Screen sections
    # Any number of screen sections may be present. Each describes
    # the configuration of a single screen. A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present. Each describes
    # the way multiple screens are organised. A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option. In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    # Section "DRI"
    # Mode 0666
    # EndSection
    Section "ServerLayout"
    # The Identifier line must be present
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens. The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen. In this example, screen 2 is located to the
    # right of screen 1.
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used. Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
    Identifier "Simple Layout"
    Screen "Screen 1" 0 0
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Touchpad" "SendCoreEvents"
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    Section "ServerFlags"
    Option "AutoAddDevices" "False"
    Option "DontZap" "false"
    Option "OffTime" "1"
    EndSection
    Section "Files"
    # The location of the RGB database. Note, this is the name of the
    # file minus the extension (like ".txt" or ".db"). There is normally
    # no need to change the default.
    # RgbPath "/usr/share/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
    # FontPath "/usr/share/fonts/TTF"
    # FontPath "/usr/share/fonts/Type1"
    # FontPath "/usr/lib/X11/fonts/local/"
    # FontPath "/usr/lib/X11/fonts/misc/"
    # FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/Speedo/"
    # FontPath "/usr/lib/X11/fonts/Type1/"
    # FontPath "/usr/lib/X11/fonts/TrueType/"
    # FontPath "/usr/lib/X11/fonts/freefont/"
    # FontPath "/usr/lib/X11/fonts/75dpi/"
    # FontPath "/usr/lib/X11/fonts/100dpi/"
    # The module search path. The default path is shown here.
    # ModulePath "/usr/lib/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    EndSection
    Section "Module"
    # This loads the DBE extension module.
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
    # This loads the font modules
    # Load "type1"
    # This loads the GLX module
    # Load "glx"
    # This loads the DRI module
    # Load "dri"
    Load "synaptics"
    Load "dbe" # Double buffer extension
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    Load "freetype"
    # Load "xtt"
    Load "glx"
    EndSection
    Section "InputDevice"
    # Option "Xleds" "1 2 3"
    # Option "LeftAlt" "Meta"
    # Option "RightAlt" "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults). For example, for a non-U.S.
    # keyboard, you will probably want to use:
    # Option "XkbModel" "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    # Option "XkbModel" "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    # Option "XkbLayout" "de"
    # or:
    # Option "XkbLayout" "de"
    # Option "XkbVariant" "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    # Option "XkbOptions" "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "us"
    # Option "XkbVariant" ""
    # Option "XkbOptions" ""
    # Option "XkbDisable"
    Identifier "Keyboard1"
    Driver "kbd"
    Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    Option "XkbRules" "xorg"
    Option "XkbModel" "latitude"
    Option "XkbLayout" "us"
    EndSection
    Section "InputDevice"
    # Identifier and driver
    # Option "Resolution" "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    # Option "BaudRate" "9600"
    # Option "SampleRate" "150"
    # Mouse wheel mapping. Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7. Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    # Option "Emulate3Buttons"
    # Option "Emulate3Timeout" "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    # Option "ChordMiddle"
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "Auto" # Auto detect
    Option "Device" "/dev/input/mice"
    # Mouse-speed setting for PS/2 mouse.
    Option "ZAxisMapping" "4 5 6 7"
    # Emulate3Buttons is an option for 2-button mice
    EndSection
    #Section "InputDevice"
    # Identifier "touchpad"
    # Driver "synaptics"
    # Option "Device" "/dev/psaux"
    # Option "Device" "/dev/input/mouse0"
    # Option "Protocol" "auto-dev"
    # Option "LeftEdge" "1700"
    # Option "RightEdge" "5300"
    # Option "TopEdge" "1700"
    # Option "BottomEdge" "4200"
    # Option "FingerLow" "25"
    # Option "FingerHigh" "30"
    # Option "MaxTapTime" "180"
    # Option "MaxTapMove" "220"
    # Option "VertScrollDelta" "100"
    # Option "MinSpeed" "0.06"
    # Option "MaxSpeed" "0.12"
    # Option "AccelFactor" "0.0010"
    # Option "SHMConfig" "on"
    #EndSection
    Section "InputDevice"
    Identifier "touchpad"
    Driver "synaptics"
    Option "AlwaysCore" "true" # send events to CorePointer
    #Option "Device" "/dev/input/mice"
    Option "Device" "/dev/psaux"
    Option "Protocol" "auto-dev"
    Option "SHMConfig" "false" # configurable at runtime? security risk
    Option "LeftEdge" "1700" # x coord left
    Option "RightEdge" "5300" # x coord right
    Option "TopEdge" "1700" # y coord top
    Option "BottomEdge" "4200" # y coord bottom
    Option "FingerLow" "25" # pressure below this level triggers release
    Option "FingerHigh" "30" # pressure above this level triggers touch
    Option "MaxTapTime" "180" # max time in ms for detecting tap
    Option "VertEdgeScroll" "true" # enable vertical scroll zone
    Option "HorizEdgeScroll" "true" # enable horizontal scroll zone
    Option "CornerCoasting" "true" # enable continuous scroll with finger in corner
    Option "CoastingSpeed" "0.30" # corner coasting speed
    Option "VertScrollDelta" "100" # edge-to-edge scroll distance of the vertical scroll
    Option "HorizScrollDelta" "100" # edge-to-edge scroll distance of the horizontal scroll
    Option "MinSpeed" "0.10" # speed factor for low pointer movement
    Option "MaxSpeed" "0.60" # maximum speed factor for fast pointer movement
    Option "AccelFactor" "0.0020" # acceleration factor for normal pointer movements
    Option "VertTwoFingerScroll" "true" # vertical scroll anywhere with two fingers
    Option "HorizTwoFingerScroll" "true" # horizontal scroll anywhere with two fingers
    EndSection
    Section "Monitor"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    # HorizSync 30-64 # multisync
    # HorizSync 31.5, 35.2 # multiple fixed sync frequencies
    # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    Identifier "My Monitor"
    HorizSync 31.5 - 64.3
    VertRefresh 50.0 - 60.0
    Option "DPMS" "true"
    EndSection
    Section "Device"
    # The chipset line is optional in most cases. It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    # Chipset "generic"
    # The Driver line must be present. When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module. Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for. When this line isn't present, a device
    # section can only match up with the primary video device. For PCI
    # devices a line like the following could be used. This line should not
    # normally be included unless there is more than one video device
    # intalled.
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    Identifier "Standard VGA"
    Driver "vga"
    VendorName "Unknown"
    BoardName "Unknown"
    EndSection
    Section "Device"
    Option "NoLogo" "True"
    #VideoRam 131072
    # Insert Clocks lines here if appropriate
    Identifier "* Generic VESA compatible"
    Driver "nvidia"
    EndSection
    Section "Screen"
    Identifier "Screen 1"
    Device "* Generic VESA compatible"
    Monitor "My Monitor"
    DefaultDepth 24
    #Option "LogoPath" "/etc/X11/tuxlogos.png"
    SubSection "Display"
    Viewport 0 0
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1440x900" "1280x1024" "1024x768" "800x600"
    EndSubSection
    EndSection

    now I have this and it still doesn't work.
    Section "ServerLayout"
    Identifier "Simple Layout"
    Screen "Screen 1" 0 0
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Touchpad" "SendCoreEvents"
    InputDevice "Keyboard1" "CoreKeyboard"
    Option "OffTime" "1"
    EndSection
    Section "ServerFlags"
    Option "AutoAddDevices" "False"
    Option "DontZap" "false"
    EndSection

  • [SOLVED]xorg.conf, my screen doesn't fit on my screen

    Hi, I've got everything set up & working well except for my screen. The desktop is too big for the monitor, about a third of it is hidden off the monitor to the bottom right. I've looked at the wiki and tried xrandr, but no dice. I'm using the VESA driver which has always worked ok in other distros. Actually the crunchbang splashscreen was like this, but otherwise it was normal. I tried the openchrome driver, got a blank screen. Searched other BBS too. I don't know the term for this problem to search for. The drivers off the VIA site are for older kernels, I'd rather just get it working with VESA, with a 1Ghz CPU I don't see myself doing much in 3D anyway.
    $ xrandr
    Screen 0: minimum 640 x 480, current 1280 x 1024, maximum 1280 x 1024
    default connected 1280x1024+0+0 0mm x 0mm
       1280x1024       0.0*
       1024x768        0.0 
       800x600         0.0 
       640x480         0.0
    xorg.conf
    Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
        ModulePath   "/usr/lib/xorg/modules"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/100dpi:unscaled"
        FontPath     "/usr/share/fonts/75dpi:unscaled"
        FontPath     "/usr/share/fonts/TTF"
        FontPath     "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
        Load  "dbe"
        Load  "dri"
        Load  "dri2"
        Load  "glx"
        Load  "extmod"
    EndSection
    Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
    EndSection
    Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option        "Protocol" "auto"
        Option        "Device" "/dev/input/mice"
        Option        "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
    EndSection
    Section "Device"
            ### Available Driver options are:-
            ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
            ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
            ### [arg]: arg optional
            #Option     "ShadowFB"               # [<bool>]
            #Option     "DefaultRefresh"         # [<bool>]
            #Option     "ModeSetClearScreen"     # [<bool>]
        Identifier  "Card0"
        Driver      "vesa"
        VendorName  "VIA Technologies, Inc."
        BoardName   "CX700/VX700 [S3 UniChrome Pro]"
        BusID       "PCI:1:0:0"
    EndSection
    Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
            Viewport   0 0
            Depth     1
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     4
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     8
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     15
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     16
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     24
        EndSubSection
    EndSection
    Here's my monitor specs:
    http://www.samsung.com/ca/consumer/offi … fullspec=F
    Just about everything else is working like a dream, I was hoping to get it all going without posting, but here we are. Thanks a lot for any help.
    Last edited by stozi (2011-03-20 01:46:55)

    Solved it.
    It was enough to remove the display mode 1280x1024 in all screen sections.
    Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
        ModulePath   "/usr/lib/xorg/modules"
        FontPath     "/usr/share/fonts/local"
        FontPath     "/usr/share/fonts/TTF"
        FontPath     "/usr/share/fonts/OTF"
        FontPath     "/usr/share/fonts/Type1"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/CID"
        FontPath     "/usr/share/fonts/75dpi/:unscaled"
        FontPath     "/usr/share/fonts/100dpi/:unscaled"
        FontPath     "/usr/share/fonts/75dpi"
        FontPath     "/usr/share/fonts/100dpi"
        FontPath     "/usr/share/fonts/cyrillic"
    EndSection
    Section "Module"
        Load  "dri"
        Load  "dbe"
        Load  "dri2"
        Load  "extmod"
        Load  "glx"
    EndSection
    Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
    EndSection
    Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option        "Protocol" "auto"
        Option        "Device" "/dev/input/mice"
        Option        "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
        HorizSync 31.5 - 50.0
        VertRefresh 40- 90
        Option "UseEdidFreqs" "1"
        Option "ReducedBlanking"
    EndSection
    Section "Device"
            ### Available Driver options are:-
            ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
            ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
            ### [arg]: arg optional
            #Option     "PrintVGARegs"           # [<bool>]
            #Option     "PrintTVRegs"            # [<bool>]
            #Option     "I2CScan"                # [<bool>]
            #Option     "VBEModes"               # [<bool>]
            #Option     "NoAccel"                # [<bool>]
            #Option     "AccelMethod"            # <str>
            #Option     "ExaNoComposite"         # [<bool>]
            #Option     "ExaScratchSize"         # <i>
            #Option     "SWCursor"               # [<bool>]
            #Option     "ShadowFB"               # [<bool>]
            #Option     "Rotate"                 # [<str>]
            #Option     "VideoRAM"               # <i>
            #Option     "ActiveDevice"           # [<str>]
            #Option     "BusWidth"               # [<str>]
            #Option     "Center"                 # [<bool>]
            #Option     "PanelSize"              # [<str>]
            #Option     "ForcePanel"             # [<bool>]
            #Option     "TVDotCrawl"             # [<bool>]
            #Option     "TVDeflicker"            # <i>
            #Option     "TVType"                 # [<str>]
            #Option     "TVOutput"               # [<str>]
            #Option     "TVPort"                 # [<str>]
            #Option     "DisableVQ"              # [<bool>]
            #Option     "DisableIRQ"             # [<bool>]
            #Option     "EnableAGPDMA"           # [<bool>]
            #Option     "NoAGPFor2D"             # [<bool>]
            #Option     "NoXVDMA"                # [<bool>]
            #Option     "VbeSaveRestore"         # [<bool>]
            #Option     "DisableXvBWCheck"       # [<bool>]
            #Option     "ModeSwitchMethod"       # [<str>]
            #Option     "MaxDRIMem"              # <i>
            #Option     "AGPMem"                 # <i>
        Identifier  "Card0"
        Driver      "openchrome"
        VendorName  "Unknown Vendor"
        BoardName   "Unknown Board"
        BusID       "PCI:1:0:0"
        Option "RenderAccel" "true"
        Option "XaaNoOffscreenPixmaps" "on"
    EndSection
    Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultDepth 24
        SubSection "Display"
            Viewport   0 0
            Depth     8
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     16
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Viewport   0 0
            Depth     24
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        Subsection "Display"
            Viewport   0 0
            Depth      32
            Modes "1024x768" "800x600" "640x480"
        EndSubsection
    EndSection
    Section "Extensions"
        Option "Composite" "Disable"
    EndSection

  • [SOLVED] Virtual screen resolution in xorg.conf being ignored

    I'm trying to configure a dual monitor set up but xrandr is telling me the max screen size is 1600x1600. I have already enterd a virtual resolution in xorg.conf.
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    EndSection
    Section "Files"
    EndSection
    Section "Module"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    Monitor "aticonfig-Monitor[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Virtual 2832 1050
    EndSubSection
    EndSection
    When I first installed Arch I was using the radeon drivers. I had no problem configuring my monitors the way I wanted. Now I'm using catalyst and getting errors.
    Am I just doing something wrong?
    Last edited by thetoxikavenger (2010-06-06 15:58:18)

    I didn't really fix the issue with xrandr, but I did manage to get my dual monitors to work with Xinerama.

  • Need some help with my xorg.conf My screen "flickers".

    Hello. I have a problem with the refresh rate on my screen. I don't know what values to use in my xorg.conf.
    It's a lenovo thinkpad x61 (not tablet).
    The problem is that when something is moving on the screen, the image flickers and I get some lines across the screen (horizontal only). Like 1part of the screen doesn't follow the other part of the screen.
    Section "ServerLayout"
    Identifier "Xorg Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    # PS/2 Mouse not detected
    # Serial Mouse not detected
    InputDevice "USB Mouse" "CorePointer"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    # Additional fonts: Locale, Gimp, TTF...
    FontPath "/usr/share/fonts/cyrillic"
    # FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
    # FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
    Load "ddc" # ddc probing of monitor
    Load "dbe"
    Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap" # bitmap-fonts
    Load "type1"
    Load "freetype"
    Load "record"
    # Load "synaptics"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "thinkpad60"
    Option "XkbLayout" "se"
    Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
    Identifier "Serial Mouse"
    Driver "mouse"
    Option "Protocol" "Microsoft"
    Option "Device" "/dev/ttyS0"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "PS/2 Mouse"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "ZAxisMapping" "4 5"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "USB Mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "SendCoreEvents" "true"
    Option "Protocol" "IMPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "5"
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Monitor"
    Identifier "Monitor0"
    Option "DPMS" "true"
    # HorizSync 28.0 - 78.0 # Warning: This may fry very old Monitors
    HorizSync 50.0 - 105.0 # Warning: This may fry old Monitors
    VertRefresh 40.0 - 50.0 # Very conservative. May flicker.
    # VertRefresh 50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
    # Default modes distilled from
    # "VESA and Industry Standards and Guide for Computer Display Monitor
    # Timing", version 1.0, revision 0.8, adopted September 17, 1998.
    # $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
    # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "640x350" 31.5 640 672 736 832 350 382 385 445 +hsync -vsync
    # 640x400 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "640x400" 31.5 640 672 736 832 400 401 404 445 -hsync +vsync
    # 720x400 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "720x400" 35.5 720 756 828 936 400 401 404 446 -hsync +vsync
    # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz
    ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
    # 640x480 @ 72Hz (VESA) hsync: 37.9kHz
    ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
    # 640x480 @ 75Hz (VESA) hsync: 37.5kHz
    ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
    # 640x480 @ 85Hz (VESA) hsync: 43.3kHz
    ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
    # 800x600 @ 56Hz (VESA) hsync: 35.2kHz
    ModeLine "800x600" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
    # 800x600 @ 60Hz (VESA) hsync: 37.9kHz
    ModeLine "800x600" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
    # 800x600 @ 72Hz (VESA) hsync: 48.1kHz
    ModeLine "800x600" 50.0 800 856 976 1040 600 637 643 666 +hsync +vsync
    # 800x600 @ 75Hz (VESA) hsync: 46.9kHz
    ModeLine "800x600" 49.5 800 816 896 1056 600 601 604 625 +hsync +vsync
    # 800x600 @ 85Hz (VESA) hsync: 53.7kHz
    ModeLine "800x600" 56.3 800 832 896 1048 600 601 604 631 +hsync +vsync
    # 1024x768i @ 43Hz (industry standard) hsync: 35.5kHz
    ModeLine "1024x768" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync Interlace
    # 1024x768 @ 60Hz (VESA) hsync: 48.4kHz
    ModeLine "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
    # 1024x768 @ 70Hz (VESA) hsync: 56.5kHz
    ModeLine "1024x768" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
    # 1024x768 @ 75Hz (VESA) hsync: 60.0kHz
    ModeLine "1024x768" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
    # 1024x768 @ 85Hz (VESA) hsync: 68.7kHz
    ModeLine "1024x768" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
    # 1152x864 @ 75Hz (VESA) hsync: 67.5kHz
    ModeLine "1152x864" 108.0 1152 1216 1344 1600 864 865 868 900 +hsync +vsync
    # 1280x960 @ 60Hz (VESA) hsync: 60.0kHz
    ModeLine "1280x960" 108.0 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync
    # 1280x960 @ 85Hz (VESA) hsync: 85.9kHz
    ModeLine "1280x960" 148.5 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync
    # 1280x1024 @ 60Hz (VESA) hsync: 64.0kHz
    ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
    # 1280x1024 @ 75Hz (VESA) hsync: 80.0kHz
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    # 1280x1024 @ 85Hz (VESA) hsync: 91.1kHz
    ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync
    # 1600x1200 @ 60Hz (VESA) hsync: 75.0kHz
    ModeLine "1600x1200" 162.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 65Hz (VESA) hsync: 81.3kHz
    ModeLine "1600x1200" 175.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 70Hz (VESA) hsync: 87.5kHz
    ModeLine "1600x1200" 189.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 75Hz (VESA) hsync: 93.8kHz
    ModeLine "1600x1200" 202.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 85Hz (VESA) hsync: 106.3kHz
    ModeLine "1600x1200" 229.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1792x1344 @ 60Hz (VESA) hsync: 83.6kHz
    ModeLine "1792x1344" 204.8 1792 1920 2120 2448 1344 1345 1348 1394 -hsync +vsync
    # 1792x1344 @ 75Hz (VESA) hsync: 106.3kHz
    ModeLine "1792x1344" 261.0 1792 1888 2104 2456 1344 1345 1348 1417 -hsync +vsync
    # 1856x1392 @ 60Hz (VESA) hsync: 86.3kHz
    ModeLine "1856x1392" 218.3 1856 1952 2176 2528 1392 1393 1396 1439 -hsync +vsync
    # 1856x1392 @ 75Hz (VESA) hsync: 112.5kHz
    ModeLine "1856x1392" 288.0 1856 1984 2208 2560 1392 1393 1396 1500 -hsync +vsync
    # 1920x1440 @ 60Hz (VESA) hsync: 90.0kHz
    ModeLine "1920x1440" 234.0 1920 2048 2256 2600 1440 1441 1444 1500 -hsync +vsync
    # 1920x1440 @ 75Hz (VESA) hsync: 112.5kHz
    ModeLine "1920x1440" 297.0 1920 2064 2288 2640 1440 1441 1444 1500 -hsync +vsync
    # Additional modelines
    ModeLine "1800x1440" 230 1800 1896 2088 2392 1440 1441 1444 1490 +HSync +VSync
    ModeLine "1800x1440" 250 1800 1896 2088 2392 1440 1441 1444 1490 +HSync +VSync
    # Extended modelines with GTF timings
    # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz
    ModeLine "640x480" 43.16 640 680 744 848 480 481 484 509 -HSync +Vsync
    # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz
    ModeLine "768x576" 34.96 768 792 872 976 576 577 580 597 -HSync +Vsync
    # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz
    ModeLine "768x576" 42.93 768 800 880 992 576 577 580 601 -HSync +Vsync
    # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz
    ModeLine "768x576" 45.51 768 808 888 1008 576 577 580 602 -HSync +Vsync
    # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz
    ModeLine "768x576" 51.84 768 808 888 1008 576 577 580 605 -HSync +Vsync
    # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz
    ModeLine "768x576" 62.57 768 816 896 1024 576 577 580 611 -HSync +Vsync
    # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz
    ModeLine "800x600" 68.18 800 848 936 1072 600 601 604 636 -HSync +Vsync
    # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz
    ModeLine "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsync
    # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz
    ModeLine "1152x864" 81.62 1152 1216 1336 1520 864 865 868 895 -HSync +Vsync
    # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz
    ModeLine "1152x864" 119.65 1152 1224 1352 1552 864 865 868 907 -HSync +Vsync
    # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz
    ModeLine "1152x864" 143.47 1152 1232 1360 1568 864 865 868 915 -HSync +Vsync
    # 1280x960 @ 72.00 Hz (GTF) hsync: 72.07 kHz; pclk: 124.54 MHz
    ModeLine "1280x960" 124.54 1280 1368 1504 1728 960 961 964 1001 -HSync +Vsync
    # 1280x960 @ 75.00 Hz (GTF) hsync: 75.15 kHz; pclk: 129.86 MHz
    ModeLine "1280x960" 129.86 1280 1368 1504 1728 960 961 964 1002 -HSync +Vsync
    # 1280x960 @ 100.00 Hz (GTF) hsync: 101.70 kHz; pclk: 178.99 MHz
    ModeLine "1280x960" 178.99 1280 1376 1520 1760 960 961 964 1017 -HSync +Vsync
    # 1280x1024 @ 100.00 Hz (GTF) hsync: 108.50 kHz; pclk: 190.96 MHz
    ModeLine "1280x1024" 190.96 1280 1376 1520 1760 1024 1025 1028 1085 -HSync +Vsync
    # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz
    ModeLine "1400x1050" 122.61 1400 1488 1640 1880 1050 1051 1054 1087 -HSync +Vsync
    # 1400x1050 @ 72.00 Hz (GTF) hsync: 78.77 kHz; pclk: 149.34 MHz
    ModeLine "1400x1050" 149.34 1400 1496 1648 1896 1050 1051 1054 1094 -HSync +Vsync
    # 1400x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 155.85 MHz
    ModeLine "1400x1050" 155.85 1400 1496 1648 1896 1050 1051 1054 1096 -HSync +Vsync
    # 1400x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 179.26 MHz
    ModeLine "1400x1050" 179.26 1400 1504 1656 1912 1050 1051 1054 1103 -HSync +Vsync
    # 1400x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 214.39 MHz
    ModeLine "1400x1050" 214.39 1400 1512 1664 1928 1050 1051 1054 1112 -HSync +Vsync
    # 1600x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 280.64 MHz
    ModeLine "1600x1200" 280.64 1600 1728 1904 2208 1200 1201 1204 1271 -HSync +Vsync
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Device"
    Identifier "Card0"
    Driver "intel"
    VendorName "All"
    BoardName "All"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultColorDepth 24
    SubSection "Display"
    Depth 1
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 32
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection

    I've tried that xorg in both kubuntu&Arch.
    It worked in kubuntu but not in Arch.
    I've tried alot of media players and both intel&vesa drivers.
    Tried Xgl (don't know if it's working) but there is no change.
    Maybe if the codecs are bad of the way the media players handles the files.
    I need help with this. Or else I can't live with arch.
    This is my xorg.conf atm:
    # xorg.conf (X.Org 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 xorg.conf manual page.
    # (Type "man 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 "InputDevice"
    Identifier "Generic Keyboard"
    Driver "kbd"
    Option "XkbRules" "xorg"
    Option "XkbModel" "thinkpad60"
    Option "XkbLayout" "se"
    EndSection
    Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "mouse"
    Option "CorePointer"
    EndSection
    Section "InputDevice"
    Identifier "Synaptics Touchpad"
    Driver "synaptics"
    Option "SendCoreEvents" "true"
    Option "Device" "/dev/psaux"
    Option "Protocol" "auto-dev"
    Option "HorizEdgeScroll" "0"
    EndSection
    Section "Device"
    Identifier "Configured Video Device"
    Boardname "intel"
    Busid "PCI:0:2:0"
    Driver "intel"
    Screen 0
    EndSection
    Section "Monitor"
    DisplaySize 245 184
    HorizSync 30-81
    Identifier "InternalLCD"
    ModelName "ThinkPad LCD 1024x768"
    Option "DPMS"
    VendorName "Lenovo"
    VertRefresh 60-75
    Modeline "1024x768" 69.71 1024 1080 1184 1344 768 769 772 798
    Gamma 1.0
    EndSection
    Section "Screen"
    Identifier "Default Screen"
    Monitor "Configured Monitor"
    Device "Configured Video Device"
    Defaultdepth 24
    SubSection "Display"
    Depth 24
    Virtual 1024 768
    Modes "1024x768"
    EndSubSection
    EndSection
    Section "ServerLayout"
    Identifier "Default Layout"
    screen 0 "Default Screen" 0 0
    Inputdevice "Synaptics Touchpad"
    EndSection
    Section "Module"
    Load "glx"
    Load "GLcore"
    Load "v4l"
    EndSection
    Section "device" #
    Identifier "device1"
    Boardname "intel"
    Busid "PCI:0:2:0"
    Driver "vesa"
    Screen 1
    EndSection
    Section "screen" #
    Identifier "screen1"
    Device "device1"
    Defaultdepth 24
    Monitor "monitor1"
    EndSection
    Section "monitor" #
    Identifier "monitor1"
    Gamma 1.0
    EndSection
    Section "device" #
    Identifier "device2"
    Boardname "VESA driver (generic)"
    Busid "PCI:0:2:1"
    Driver "vesa"
    Screen 0
    EndSection
    Section "screen" #
    Identifier "screen2"
    Device "device2"
    Defaultdepth 24
    Monitor "monitor2"
    EndSection
    Section "monitor" #
    Identifier "monitor2"
    Gamma 1.0
    EndSection
    Section "ServerFlags"
    EndSection
    Last edited by bredin (2008-08-03 19:53:55)

  • No xorg.conf and x3100 slow performance

    I recently installed Arch Linux on my laptop and almost everything is working fine.  Some time ago,  I used to use a tool that detects my hardware and generates a xorg.conf, but this time, I installed Arch and X is running fine without xorg.conf.
    However, I have a problem with 3D Aceleration. My 3D card is Intel x3100 (GM965). (I installed xf86-video-intel driver) 3D aceleration is very slow. Ive run glxinfo and it shows only NONE and SLOW flags. Some simple opengl games like supertux run very very slow.
    Ive tried to copy and paste a xorg file from a x3100 user, but X didnt work at all. What can I do to enable 3D aceleration. Thanks in advance
    EDIT: I was really happy I didnt have to write a xorg.conf file. Will I have to?
    Last edited by ar5007eg (2009-06-12 20:20:05)

    Thanks for your answer
    I've tried adding this "ServerLayout" layout section and it gives me the same fatal error from X: "no screen founds"
    Here is my output form lspci
    00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 03)
    00:02.1 Display controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 03)
    00:1a.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 (rev 03)
    00:1a.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 03)
    00:1c.1 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 2 (rev 03)
    00:1c.2 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 3 (rev 03)
    00:1d.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f3)
    00:1f.0 ISA bridge: Intel Corporation 82801HEM (ICH8M) LPC Interface Controller (rev 03)
    00:1f.1 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) IDE Controller (rev 03)
    00:1f.2 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) SATA IDE Controller (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 03)
    04:00.0 Ethernet controller: Atheros Communications Inc. AR242x 802.11abg Wireless PCI Express Adapter (rev 01)
    05:00.0 Ethernet controller: Broadcom Corporation NetLink BCM5787M Gigabit Ethernet PCI Express (rev 02)
    0a:09.0 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller (rev 05)
    0a:09.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 22)
    0a:09.2 System peripheral: Ricoh Co Ltd R5C843 MMC Host Controller (rev 12)
    0a:09.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 12)
    0a:09.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev ff)
    EDIT: output from lspci -v
    00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub (rev 03)
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, fast devsel, latency 0
    Capabilities: [e0] Vendor Specific Information <?>
    Kernel driver in use: agpgart-intel
    Kernel modules: intel-agp
    00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 03) (prog-if 00 [VGA controller])
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, fast devsel, latency 0, IRQ 5
    Memory at f0000000 (64-bit, non-prefetchable) [size=1M]
    Memory at d0000000 (64-bit, prefetchable) [size=256M]
    I/O ports at 1800 [size=8]
    Capabilities: [90] MSI: Mask- 64bit- Count=1/1 Enable-
    Capabilities: [d0] Power Management version 3
    Kernel modules: intelfb
    00:02.1 Display controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 03)
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, fast devsel, latency 0
    Memory at f0100000 (64-bit, non-prefetchable) [size=1M]
    Capabilities: [d0] Power Management version 3
    00:1a.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 (rev 03) (prog-if 00 [UHCI])
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 0, IRQ 16
    I/O ports at 1820 [size=32]
    Kernel driver in use: uhci_hcd
    Kernel modules: uhci-hcd
    00:1a.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 (rev 03) (prog-if 00 [UHCI])
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 0, IRQ 21
    I/O ports at 1840 [size=32]
    Kernel driver in use: uhci_hcd
    Kernel modules: uhci-hcd
    00:1a.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 (rev 03) (prog-if 20 [EHCI])
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 0, IRQ 18
    Memory at f0704000 (32-bit, non-prefetchable) [size=1K]
    Capabilities: [50] Power Management version 2
    Capabilities: [58] Debug port: BAR=1 offset=00a0
    Kernel driver in use: ehci_hcd
    Kernel modules: ehci-hcd
    00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, fast devsel, latency 0, IRQ 22
    Memory at f0500000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: [50] Power Management version 2
    Capabilities: [60] MSI: Mask- 64bit+ Count=1/1 Enable-
    Capabilities: [70] Express Root Complex Integrated Endpoint, MSI 00
    Capabilities: [100] Virtual Channel <?>
    Capabilities: [130] Root Complex Link <?>
    Kernel driver in use: HDA Intel
    Kernel modules: snd-hda-intel
    00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 03) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=02, subordinate=03, sec-latency=0
    Capabilities: [40] Express Root Port (Slot+), MSI 00
    Capabilities: [80] MSI: Mask- 64bit- Count=1/1 Enable+
    Capabilities: [90] Subsystem: Acer Incorporated [ALI] Device 011d
    Capabilities: [a0] Power Management version 2
    Capabilities: [100] Virtual Channel <?>
    Capabilities: [180] Root Complex Link <?>
    Kernel driver in use: pcieport-driver
    Kernel modules: shpchp
    00:1c.1 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 2 (rev 03) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
    Memory behind bridge: 88000000-880fffff
    Capabilities: [40] Express Root Port (Slot+), MSI 00
    Capabilities: [80] MSI: Mask- 64bit- Count=1/1 Enable+
    Capabilities: [90] Subsystem: Acer Incorporated [ALI] Device 011d
    Capabilities: [a0] Power Management version 2
    Capabilities: [100] Virtual Channel <?>
    Capabilities: [180] Root Complex Link <?>
    Kernel driver in use: pcieport-driver
    Kernel modules: shpchp
    00:1c.2 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 3 (rev 03) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
    Memory behind bridge: 88100000-881fffff
    Capabilities: [40] Express Root Port (Slot+), MSI 00
    Capabilities: [80] MSI: Mask- 64bit- Count=1/1 Enable+
    Capabilities: [90] Subsystem: Acer Incorporated [ALI] Device 011d
    Capabilities: [a0] Power Management version 2
    Capabilities: [100] Virtual Channel <?>
    Capabilities: [180] Root Complex Link <?>
    Kernel driver in use: pcieport-driver
    Kernel modules: shpchp
    00:1d.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 (rev 03) (prog-if 00 [UHCI])
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 0, IRQ 23
    I/O ports at 1860 [size=32]
    Kernel driver in use: uhci_hcd
    Kernel modules: uhci-hcd
    00:1d.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 (rev 03) (prog-if 00 [UHCI])
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 0, IRQ 19
    I/O ports at 1880 [size=32]
    Kernel driver in use: uhci_hcd
    Kernel modules: uhci-hcd
    00:1d.2 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 (rev 03) (prog-if 00 [UHCI])
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 0, IRQ 18
    I/O ports at 18a0 [size=32]
    Kernel driver in use: uhci_hcd
    Kernel modules: uhci-hcd
    00:1d.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 (rev 03) (prog-if 20 [EHCI])
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 0, IRQ 23
    Memory at f0704400 (32-bit, non-prefetchable) [size=1K]
    Capabilities: [50] Power Management version 2
    Capabilities: [58] Debug port: BAR=1 offset=00a0
    Kernel driver in use: ehci_hcd
    Kernel modules: ehci-hcd
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f3) (prog-if 01 [Subtractive decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=0a, subordinate=0a, sec-latency=32
    Memory behind bridge: f0400000-f04fffff
    Capabilities: [50] Subsystem: Gammagraphx, Inc. (or missing ID) Device 0000
    00:1f.0 ISA bridge: Intel Corporation 82801HEM (ICH8M) LPC Interface Controller (rev 03)
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 0
    Capabilities: [e0] Vendor Specific Information <?>
    Kernel modules: iTCO_wdt
    00:1f.1 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) IDE Controller (rev 03) (prog-if 8a [Master SecP PriP])
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 0, IRQ 19
    I/O ports at 01f0 [size=8]
    I/O ports at 03f4 [size=1]
    I/O ports at 0170 [size=8]
    I/O ports at 0374 [size=1]
    I/O ports at 1810 [size=16]
    Kernel driver in use: ata_piix
    Kernel modules: piix, ata_piix
    00:1f.2 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) SATA IDE Controller (rev 03) (prog-if 8f [Master SecP SecO PriP PriO])
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 19
    I/O ports at 1c00 [size=8]
    I/O ports at 18f4 [size=4]
    I/O ports at 18f8 [size=8]
    I/O ports at 18f0 [size=4]
    I/O ports at 18e0 [size=16]
    I/O ports at 18d0 [size=16]
    Capabilities: [70] Power Management version 3
    Kernel driver in use: ata_piix
    Kernel modules: ata_piix
    00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 03)
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: medium devsel, IRQ 19
    Memory at 88200000 (32-bit, non-prefetchable) [size=256]
    I/O ports at 1c20 [size=32]
    Kernel driver in use: i801_smbus
    Kernel modules: i2c-i801
    04:00.0 Ethernet controller: Atheros Communications Inc. AR242x 802.11abg Wireless PCI Express Adapter (rev 01)
    Subsystem: AMBIT Microsystem Corp. AR5BXB63 802.11bg NIC
    Flags: bus master, fast devsel, latency 0, IRQ 17
    Memory at 88000000 (64-bit, non-prefetchable) [size=64K]
    Capabilities: [40] Power Management version 2
    Capabilities: [50] MSI: Mask- 64bit- Count=1/1 Enable-
    Capabilities: [60] Express Legacy Endpoint, MSI 00
    Capabilities: [90] MSI-X: Enable- Mask- TabSize=1
    Capabilities: [100] Advanced Error Reporting
    UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
    UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
    UESvrt: DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
    CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout+ NonFatalErr-
    CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
    AERCap: First Error Pointer: 14, GenCap+ CGenEn- ChkCap+ ChkEn-
    Capabilities: [140] Virtual Channel <?>
    Kernel driver in use: ath5k_pci
    Kernel modules: ath_pci, ath5k
    05:00.0 Ethernet controller: Broadcom Corporation NetLink BCM5787M Gigabit Ethernet PCI Express (rev 02)
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, fast devsel, latency 0, IRQ 764
    Memory at 88100000 (64-bit, non-prefetchable) [size=64K]
    Expansion ROM at <ignored> [disabled]
    Capabilities: [48] Power Management version 3
    Capabilities: [50] Vital Product Data <?>
    Capabilities: [58] Vendor Specific Information <?>
    Capabilities: [e8] MSI: Mask- 64bit+ Count=1/1 Enable+
    Capabilities: [d0] Express Endpoint, MSI 00
    Capabilities: [100] Advanced Error Reporting
    UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
    UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
    UESvrt: DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
    CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
    CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
    AERCap: First Error Pointer: 14, GenCap+ CGenEn- ChkCap+ ChkEn-
    Capabilities: [13c] Virtual Channel <?>
    Capabilities: [160] Device Serial Number e9-b9-c5-fe-ff-24-1b-00
    Capabilities: [16c] Power Budgeting <?>
    Kernel driver in use: tg3
    Kernel modules: tg3
    0a:09.0 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller (rev 05) (prog-if 10 [OHCI])
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 32, IRQ 16
    Memory at f0400000 (32-bit, non-prefetchable) [size=2K]
    Capabilities: [dc] Power Management version 2
    Kernel driver in use: ohci1394
    Kernel modules: ohci1394
    0a:09.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 22)
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 32, IRQ 17
    Memory at f0400800 (32-bit, non-prefetchable) [size=256]
    Capabilities: [80] Power Management version 2
    Kernel driver in use: sdhci-pci
    Kernel modules: sdhci-pci
    0a:09.2 System peripheral: Ricoh Co Ltd R5C843 MMC Host Controller (rev 12)
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 32
    Memory at f0400c00 (32-bit, non-prefetchable) [size=256]
    Capabilities: [80] Power Management version 2
    Kernel driver in use: ricoh-mmc
    Kernel modules: ricoh_mmc
    0a:09.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 12)
    Subsystem: Acer Incorporated [ALI] Device 011d
    Flags: bus master, medium devsel, latency 32
    Memory at f0401000 (32-bit, non-prefetchable) [size=256]
    Capabilities: [80] Power Management version 2
    0a:09.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev ff) (prog-if ff)
    !!! Unknown header type 7f
    Last edited by ar5007eg (2009-06-13 16:04:07)

  • Keyboard keymap reverted to default (US), ignoring xorg.conf

    Hello there fellow Archers!
    My first post on this forum but certainly not the last! I'm a new user of Archlinux, just switched from Xubuntu so bear with me if I seem a bit lost.
    Update: I might have posted this in the wrong forum. Wasn't really sure where to post it since my problem is dealing with both unstable and git packages. If so, plesae move it to where it's best suited!
    Anyway, this is just one of the few problems that I haven't managed to figure out on my own, yet. I'm a proud owner of a Acer Aspire One, but since not everything is working out-of-box I'm experimenting with git packages that I've been compiling with the help of ABS.
    Whenever I start X, the keyboards keymap is reverted back to default (US), even though it seems it does read the xorg.conf, as seen in the log below. Funniest thing is, when I run 'setxkbmap -v 10' this is what I get:
    Setting verbose level to 10
    locale is C
    Applied rules from xorg:
    model: pc105
    layout: se
    Trying to build keymap using the following components:
    keycodes: xfree86+aliases(qwerty)
    types: complete
    compat: complete
    symbols: pc+se
    geometry: pc(pc105)
    Suddenly the keymap is set correctly, according to what I've specified in xorg.conf.
    Anyone got any ideas?
    Cheers!
    xorg.conf:
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "True"
    Option "AutoAddDevices" "False"
    EndSection
    Section "ServerLayout"
    Identifier "Default Layout"
    Screen 0 "Default Screen" 0 0
    InputDevice "Touchpad" "AlwaysCore"
    InputDevice "Integrated Keyboard" "CoreKeyboard"
    InputDevice "Logitech VX Nano" "CorePointer"
    EndSection
    ... (cut out irrelevant parts)
    Section "InputDevice"
    Identifier "Integrated Keyboard"
    Driver "Keyboard"
    #Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "se"
    #Option "XkbKeymap" "se"
    #Option "XkbVariant" "euro"
    #Option "XkbOptions" "grp:alt_shift_toggle"
    EndSection
    (The disabled keyboard options are stuff I've been testing to see if it had any impact, which they didn't.)
    Xorg.0.log:
    (**) Option "CoreKeyboard"
    (**) Integrated Keyboard: always reports core events
    (**) Option "Protocol" "standard"
    (**) Integrated Keyboard: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Integrated Keyboard: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Integrated Keyboard: XkbModel: "pc105"
    (**) Option "XkbLayout" "se"
    (**) Integrated Keyboard: XkbLayout: "se"
    (**) Option "CustomKeycodes" "off"
    (**) Integrated Keyboard: CustomKeycodes disabled
    (II) XINPUT: Adding extended input device "Integrated Keyboard" (type: KEYBOARD)
    packages (git and unstable) I've compiled and installed without errors:
    dri2proto-git-20090111
    libx11-1.1.99.2
    xf86-input-keyboard-git-20090111
    inputproto-1.5.0
    libxcb-1.1.93
    intel-dri-git-20090111
    mesa-git-20090111
    libdrm-2.4.3
    pixman-0.13.2
    xf86-video-intel-2.5.99.2
    libgl-git-20090111
    randrproto-1.2.99.3
    xf86driproto-git-20090111
    libpthread-stub-0.1
    xf86-input-evdev-2.1.0
    xorg-server-1.5.99.3
    Last edited by mekwall (2009-01-11 23:27:15)

    I presume you won't jump to testing straight away coming from Ubuntu, so I will move this. If you *are* running testing please state so explicitly in your post so we can set things straight (again ). The testing forum is intended for people using that repository. If you build a package using git or whatever version control or snapshot thingy out there and it is *not* in the testing repository (as in: the exact same version you are using) then it is not a testing problem. That is, after all, why it says [Testing] Repo Forum.
    While the fact you use unstable stuff might be related to your problem, it is more probable the shift from Xorg.conf-based device handling to HAL-based device handling with the latest Xorg is the culprit . These are things Ubuntu will obscure easily, to not bother the user (or it might not have the latest Xorg yet alltogether, I don't keep in touch with Ubuntu's packages).
    As for the solution, mektub pointed you to it. As for your other problems: consult the wiki and the Acer Aspire One thread in these forums, be sure to read the beginner's guide in the wiki too, so you have some background on how things work in Arch (and how we expect you to use it; the package manager is not the only thing that sets Ubuntu apart from Arch).
    Also - I think mektub was relating to your fresh appearance on the forums rather than to your skill level. He can't see that, he can see the date on which you joined .
    Have fun, and welcome to Arch .

  • [SOLVED] xorg.conf with 'hwd -xa' on sony viao not working

    Hello,
    I have a Sony viao VGN-T150P running Arch linux and I can't get my x.org working .
    here are some of information I get:
    lspci says
    00:00.0 Host bridge: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to I/O Controller (rev 02)
    00:00.1 System peripheral: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to I/O Controller (rev 02)
    00:00.3 System peripheral: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to I/O Controller (rev 02)
    00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02)
    00:02.1 Display controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02)
    00:1d.0 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB Controller: Intel Corporation 82801DB/DBM (ICH4/ICH4-M) USB2 EHCI Controller (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 83)
    00:1f.0 ISA bridge: Intel Corporation 82801DBM (ICH4-M) LPC Interface Bridge (rev 03)
    00:1f.1 IDE interface: Intel Corporation 82801DBM (ICH4-M) IDE Controller (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller (rev 03)
    00:1f.5 Multimedia audio controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 03)
    00:1f.6 Modem: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller (rev 03)
    02:04.0 CardBus bridge: Texas Instruments PCI7420 CardBus Controller
    02:04.2 FireWire (IEEE 1394): Texas Instruments PCI7x20 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller
    02:04.3 Mass storage controller: Texas Instruments PCI7420/7620 Combo CardBus, 1394a-2000 OHCI and SD/MS-Pro Controller
    02:08.0 Ethernet controller: Intel Corporation 82801DB PRO/100 VE (MOB) Ethernet Controller (rev 83)
    02:0b.0 Network controller: Intel Corporation PRO/Wireless 2200BG [Calexico2] Network Connection (rev 05)
    so then I installed xf86-video-intel,
    using that driver with a blank xorg.conf , I get 3 terminal windows and xclock,  but my mouse and keyboard don't seem to do anything
    here are those errors:
    X.Org X Server 1.5.3
    Release Date: 5 November 2008
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.27-ARCH i686
    Current Operating System: Linux myhost 2.6.25-ARCH #1 SMP PREEMPT Sat Jun 14 18:07:19 CEST 2008 i686
    Build Date: 17 December 2008 08:20:05PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    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: Wed Feb 4 23:44:09 2009
    (EE) Unable to locate/open config file
    (II) Loader magic: 0x81d5fe0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 4.1
    X.Org XInput driver : 2.1
    X.Org Server Extension : 1.1
    X.Org Font Renderer : 0.6
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0@0:2:0) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xe8000000/0, 0xe0000000/0, I/O @ 0x00001800/0
    (--) PCI: (0@0:2:1) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xf0000000/0, 0xe0080000/0
    (==) Matched intel for the autoconfigured driver
    New driver is "intel"
    (==) Using default built-in configuration (30 lines)
    (==) --- Start of built-in configuration ---
    Section "Device"
    Identifier "Builtin Default intel Device 0"
    Driver "intel"
    EndSection
    Section "Screen"
    Identifier "Builtin Default intel Screen 0"
    Device "Builtin Default intel Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default fbdev Device 0"
    Driver "fbdev"
    EndSection
    Section "Screen"
    Identifier "Builtin Default fbdev Screen 0"
    Device "Builtin Default fbdev Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default vesa Device 0"
    Driver "vesa"
    EndSection
    Section "Screen"
    Identifier "Builtin Default vesa Screen 0"
    Device "Builtin Default vesa Device 0"
    EndSection
    Section "ServerLayout"
    Identifier "Builtin Default Layout"
    Screen "Builtin Default intel Screen 0"
    Screen "Builtin Default fbdev Screen 0"
    Screen "Builtin Default vesa Screen 0"
    EndSection
    (==) --- End of built-in configuration ---
    (==) ServerLayout "Builtin Default Layout"
    (**) |-->Screen "Builtin Default intel Screen 0" (0)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default intel Device 0"
    (==) No monitor specified for screen "Builtin Default intel Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default fbdev Screen 0" (1)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default fbdev Device 0"
    (==) No monitor specified for screen "Builtin Default fbdev Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default vesa Screen 0" (2)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default vesa Device 0"
    (==) No monitor specified for screen "Builtin Default vesa Screen 0".
    Using a default monitor configuration.
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) No FontPath specified. Using compiled-in default.
    (WW) The directory "/usr/share/fonts/TTF" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/Type1" does not exist.
    Entry deleted from font path.
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[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 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 1.1
    (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: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Server Extension, version 1.1
    (==) AIGLX enabled
    (==) Exporting typical set of GLX visuals
    (II) Loading extension GLX
    (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 1.5.3, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.6
    (II) Loading font FreeType
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 2.4.3
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 4.1
    (II) LoadModule: "fbdev"
    (WW) Warning, couldn't open module fbdev
    (II) UnloadModule: "fbdev"
    (EE) Failed to load module "fbdev" (module does not exist, 0)
    (II) LoadModule: "vesa"
    (II) Loading /usr/lib/xorg/modules/drivers//vesa_drv.so
    (II) Module vesa: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 2.1.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 4.1
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ,
    965GM, 965GME/GLE, G33, Q35, Q33,
    Mobile Intel® GM45 Express Chipset,
    Intel Integrated Graphics Device, G45/G43, Q45/Q43
    (II) VESA: driver for VESA chipsets: vesa
    (II) Primary Device is: PCI 00@00:02:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[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 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (WW) Falling back to old probe method for vesa
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[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] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Video Driver, version 4.1
    (II) Loading sub module "vbe"
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules//libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.1.0
    ABI class: X.Org Video Driver, version 4.1
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 0.1.0
    ABI class: X.Org Video Driver, version 4.1
    (II) intel(0): Creating default Display subsection in Screen section
    "Builtin Default intel Screen 0" for depth/fbbpp 24/32
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 855GME
    (--) intel(0): Chipset: "852GM/855GM"
    (--) intel(0): Linear framebuffer at 0xE8000000
    (--) intel(0): IO registers at addr 0xE0000000
    (II) intel(0): 2 display pipes available.
    (==) intel(0): Using EXA for acceleration
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Reloading /usr/lib/xorg/modules//libint10.so
    (II) intel(0): initializing int10
    (WW) intel(0): Bad V_BIOS checksum
    (II) intel(0): Primary V_BIOS segment is: 0xc000
    (II) intel(0): VESA BIOS detected
    (II) intel(0): VESA VBE Version 3.0
    (II) intel(0): VESA VBE Total Mem: 8000 kB
    (II) intel(0): VESA VBE OEM: Intel(r)852GM/852GME/855GM/855GME Graphics Chip Accelerated VGA BIOS
    (II) intel(0): VESA VBE OEM Software Rev: 1.0
    (II) intel(0): VESA VBE OEM Vendor: Intel Corporation
    (II) intel(0): VESA VBE OEM Product: Intel(r)852GM/852GME/855GM/855GME Graphics Controller
    (II) intel(0): VESA VBE OEM Product Rev: Hardware Version 0.0
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) intel(0): Output VGA has no monitor section
    (II) intel(0): I2C bus "CRTDDC_A" initialized.
    (II) intel(0): Output LVDS has no monitor section
    (II) intel(0): I2C bus "LVDSDDC_C" initialized.
    (II) intel(0): Attempting to determine panel fixed mode.
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" removed.
    (II) intel(0): I2C bus "DVODDC_D" initialized.
    (II) Loading sub module "sil164"
    (II) LoadModule: "sil164"
    (II) Loading /usr/lib/xorg/modules/drivers//sil164.so
    (II) Module sil164: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Video Driver, version 4.1
    (II) intel(0): I2C bus "DVOI2C_E" initialized.
    (II) Loading sub module "ch7xxx"
    (II) LoadModule: "ch7xxx"
    (II) Loading /usr/lib/xorg/modules/drivers//ch7xxx.so
    (II) Module ch7xxx: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Video Driver, version 4.1
    (II) intel(0): I2C bus "DVOI2C_E" removed.
    (II) intel(0): I2C bus "DVOI2C_E" initialized.
    (II) Loading sub module "ivch"
    (II) LoadModule: "ivch"
    (II) Loading /usr/lib/xorg/modules/drivers//ivch.so
    (II) Module ivch: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Video Driver, version 4.1
    (II) intel(0): I2C bus "DVOI2C_E" removed.
    (II) intel(0): I2C bus "DVOI2C_B" initialized.
    (II) Loading sub module "tfp410"
    (II) LoadModule: "tfp410"
    (II) Loading /usr/lib/xorg/modules/drivers//tfp410.so
    (II) Module tfp410: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Video Driver, version 4.1
    (II) intel(0): I2C bus "DVOI2C_B" removed.
    (II) intel(0): I2C bus "DVOI2C_E" initialized.
    (II) Loading sub module "ch7017"
    (II) LoadModule: "ch7017"
    (II) Loading /usr/lib/xorg/modules/drivers//ch7017.so
    (II) Module ch7017: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Video Driver, version 4.1
    (II) intel(0): I2C bus "DVOI2C_E" removed.
    (II) intel(0): I2C bus "DVOI2C_E" initialized.
    (II) intel(0): I2C bus "DVOI2C_E" removed.
    (II) intel(0): I2C bus "DVODDC_D" removed.
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" removed.
    (II) intel(0): Output VGA disconnected
    (II) intel(0): Output LVDS connected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS using initial mode 1280x768
    (II) intel(0): Monitoring connected displays enabled
    (II) intel(0): detected 128 kB GTT.
    (II) intel(0): detected 8060 kB stolen memory.
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Will not try to enable page flipping
    (==) intel(0): Triple buffering disabled
    (==) intel(0): Intel XvMC decoder disabled
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (==) intel(0): DPI set to (96, 96)
    (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 1.5.3, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "exa"
    (II) LoadModule: "exa"
    (II) Loading /usr/lib/xorg/modules//libexa.so
    (II) Module exa: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 2.4.0
    ABI class: X.Org Video Driver, version 4.1
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) intel(0): Comparing regs from server start up to After PreInit
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd000000a
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x00000202 to 0x80000202
    (WW) intel(0): PIPEBSTAT before: status: VSYNC_INT_STATUS VBLANK_INT_STATUS
    (WW) intel(0): PIPEBSTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS
    (II) UnloadModule: "vesa"
    (II) Unloading /usr/lib/xorg/modules/drivers//vesa_drv.so
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[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] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) intel(0): Kernel reported 238592 total, 1 used
    (II) intel(0): I830CheckAvailableMemory: 954364 kB available
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: drmOpenMinor returns 10
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) intel(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) intel(0): [drm] framebuffer mapped by ddx driver
    (II) intel(0): [drm] added 1 reserved context for kernel
    (II) intel(0): X context handle = 0x1
    (II) intel(0): [drm] installed DRM signal handler
    (**) intel(0): Framebuffer compression enabled
    (**) intel(0): Tiling enabled
    (==) intel(0): VideoRam: 131072 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (WW) intel(0): xf86AllocateGARTMemory: allocation of 1536 pages failed
    (Cannot allocate memory)
    (WW) intel(0): Allocation error, framebuffer compression disabled
    (WW) intel(0): xf86AllocateGARTMemory: allocation of 10 pages failed
    (Cannot allocate memory)
    (II) intel(0): Tiled allocation successful.
    (II) intel(0): [drm] Registers = 0xe0000000
    (II) intel(0): [drm] ring buffer = 0xe8000000
    (II) intel(0): [drm] mapped front buffer at 0xe9000000, handle = 0xe9000000
    (II) intel(0): [drm] mapped back buffer at 0xec000000, handle = 0xec000000
    (II) intel(0): [drm] mapped depth buffer at 0xed000000, handle = 0xed000000
    (II) intel(0): [drm] mapped classic textures at 0xee000000, handle = 0xee000000
    (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432
    (II) intel(0): [dri] visual configs initialized
    (II) intel(0): Page Flipping disabled
    (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (II) EXA(0): Offscreen pixmap area of 31457280 bytes
    (II) EXA(0): Driver registered support for the following operations:
    (II) Solid
    (II) Copy
    (II) Composite (RENDER acceleration)
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): [DRI] installation complete
    (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x007df000 (pgoffset 2015)
    (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x007e0000 (pgoffset 2016)
    (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x007e4000 (pgoffset 2020)
    (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x007e5000 (pgoffset 2021)
    (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x007e9000 (pgoffset 2025)
    (II) intel(0): xf86BindGARTMemory: bind key 5 at 0x01000000 (pgoffset 4096)
    (II) intel(0): xf86BindGARTMemory: bind key 6 at 0x02000000 (pgoffset 8192)
    (II) intel(0): xf86BindGARTMemory: bind key 7 at 0x04000000 (pgoffset 16384)
    (II) intel(0): xf86BindGARTMemory: bind key 8 at 0x05000000 (pgoffset 20480)
    (II) intel(0): xf86BindGARTMemory: bind key 9 at 0x06000000 (pgoffset 24576)
    (II) intel(0): Fixed memory allocation layout:
    (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB)
    (II) intel(0): 0x00020000-0x00027fff: logical 3D context (32 kB)
    (II) intel(0): 0x007df000: end of stolen memory
    (II) intel(0): 0x007df000-0x007dffff: Core cursor (4 kB, 0x0000000036307000 physical
    (II) intel(0): 0x007e0000-0x007e3fff: ARGB cursor (16 kB, 0x00000000362c8000 physical
    (II) intel(0): 0x007e4000-0x007e4fff: Core cursor (4 kB, 0x000000003632f000 physical
    (II) intel(0): 0x007e5000-0x007e8fff: ARGB cursor (16 kB, 0x00000000362a8000 physical
    (II) intel(0): 0x007e9000-0x007e9fff: overlay registers (4 kB, 0x0000000036322000 physical
    (II) intel(0): 0x01000000-0x01ffffff: front buffer (10240 kB) X tiled
    (II) intel(0): 0x02000000-0x03dfffff: exa offscreen (30720 kB)
    (II) intel(0): 0x04000000-0x04ffffff: back buffer (10240 kB) X tiled
    (II) intel(0): 0x05000000-0x05ffffff: depth buffer (10240 kB) X tiled
    (II) intel(0): 0x06000000-0x07ffffff: classic textures (32768 kB)
    (II) intel(0): 0x08000000: end of aperture
    (II) intel(0): using SSC reference clock of 66 MHz
    (II) intel(0): Selecting standard 18 bit TMDS pixel format.
    (II) intel(0): Output configuration:
    (II) intel(0): Pipe A is off
    (II) intel(0): Display plane A is now enabled and connected to pipe A.
    (WW) intel(0): Hardware claims pipe A is on while software believes it is off
    (WW) intel(0): Hardware claims plane A is on while software believes it is off
    (II) intel(0): Pipe B is on
    (II) intel(0): Display plane B is now enabled and connected to pipe B.
    (II) intel(0): Output VGA is connected to pipe none
    (II) intel(0): Output LVDS is connected to pipe B
    (II) intel(0): [drm] dma control initialized, using IRQ 9
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (II) intel(0): DPMS enabled
    (II) intel(0): Set up overlay video
    (II) intel(0): direct rendering: Enabled
    (--) RandR disabled
    (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 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
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: enabled GLX_texture_from_pixmap with driver support
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i915_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (II) intel(0): Setting screen physical size to 338 x 203
    if I use hwd -xa to make an xorg.conf which says this:
    Section "ServerLayout"
    Identifier "Xorg Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "PS/2 Mouse" "CorePointer"
    # Serial Mouse not detected
    # USB Mouse not detected
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
    Option "AutoAddDevices" "False"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    # Additional fonts: Locale, Gimp, TTF...
    FontPath "/usr/share/fonts/cyrillic"
    # FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
    # FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
    Load "ddc" # ddc probing of monitor
    Load "dbe"
    Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap" # bitmap-fonts
    Load "type1"
    Load "freetype"
    Load "record"
    # Load "synaptics"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
    Identifier "Serial Mouse"
    Driver "mouse"
    Option "Protocol" "Microsoft"
    Option "Device" "/dev/ttyS0"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "PS/2 Mouse"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "ZAxisMapping" "4 5"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "USB Mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "SendCoreEvents" "true"
    Option "Protocol" "IMPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "5"
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Monitor"
    Identifier "Monitor0"
    Option "DPMS" "true"
    # HorizSync 28.0 - 78.0 # Warning: This may fry very old Monitors
    HorizSync 28.0 - 96.0 # Warning: This may fry old Monitors
    VertRefresh 50.0 - 75.0 # Very conservative. May flicker.
    # VertRefresh 50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
    # Default modes distilled from
    # "VESA and Industry Standards and Guide for Computer Display Monitor
    # Timing", version 1.0, revision 0.8, adopted September 17, 1998.
    # $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
    # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "640x350" 31.5 640 672 736 832 350 382 385 445 +hsync -vsync
    # 640x400 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "640x400" 31.5 640 672 736 832 400 401 404 445 -hsync +vsync
    # 720x400 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "720x400" 35.5 720 756 828 936 400 401 404 446 -hsync +vsync
    # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz
    ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
    # 640x480 @ 72Hz (VESA) hsync: 37.9kHz
    ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
    # 640x480 @ 75Hz (VESA) hsync: 37.5kHz
    ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
    # 640x480 @ 85Hz (VESA) hsync: 43.3kHz
    ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
    # 800x600 @ 56Hz (VESA) hsync: 35.2kHz
    ModeLine "800x600" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
    # 800x600 @ 60Hz (VESA) hsync: 37.9kHz
    ModeLine "800x600" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
    # 800x600 @ 72Hz (VESA) hsync: 48.1kHz
    ModeLine "800x600" 50.0 800 856 976 1040 600 637 643 666 +hsync +vsync
    # 800x600 @ 75Hz (VESA) hsync: 46.9kHz
    ModeLine "800x600" 49.5 800 816 896 1056 600 601 604 625 +hsync +vsync
    # 800x600 @ 85Hz (VESA) hsync: 53.7kHz
    ModeLine "800x600" 56.3 800 832 896 1048 600 601 604 631 +hsync +vsync
    # 1024x768i @ 43Hz (industry standard) hsync: 35.5kHz
    ModeLine "1024x768" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync Interlace
    # 1024x768 @ 60Hz (VESA) hsync: 48.4kHz
    ModeLine "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
    # 1024x768 @ 70Hz (VESA) hsync: 56.5kHz
    ModeLine "1024x768" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
    # 1024x768 @ 75Hz (VESA) hsync: 60.0kHz
    ModeLine "1024x768" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
    # 1024x768 @ 85Hz (VESA) hsync: 68.7kHz
    ModeLine "1024x768" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
    # 1152x864 @ 75Hz (VESA) hsync: 67.5kHz
    ModeLine "1152x864" 108.0 1152 1216 1344 1600 864 865 868 900 +hsync +vsync
    # 1280x960 @ 60Hz (VESA) hsync: 60.0kHz
    ModeLine "1280x960" 108.0 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync
    # 1280x960 @ 85Hz (VESA) hsync: 85.9kHz
    ModeLine "1280x960" 148.5 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync
    # 1280x1024 @ 60Hz (VESA) hsync: 64.0kHz
    ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
    # 1280x1024 @ 75Hz (VESA) hsync: 80.0kHz
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    # 1280x1024 @ 85Hz (VESA) hsync: 91.1kHz
    ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync
    # 1600x1200 @ 60Hz (VESA) hsync: 75.0kHz
    ModeLine "1600x1200" 162.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 65Hz (VESA) hsync: 81.3kHz
    ModeLine "1600x1200" 175.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 70Hz (VESA) hsync: 87.5kHz
    ModeLine "1600x1200" 189.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 75Hz (VESA) hsync: 93.8kHz
    ModeLine "1600x1200" 202.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 85Hz (VESA) hsync: 106.3kHz
    ModeLine "1600x1200" 229.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1792x1344 @ 60Hz (VESA) hsync: 83.6kHz
    ModeLine "1792x1344" 204.8 1792 1920 2120 2448 1344 1345 1348 1394 -hsync +vsync
    # 1792x1344 @ 75Hz (VESA) hsync: 106.3kHz
    ModeLine "1792x1344" 261.0 1792 1888 2104 2456 1344 1345 1348 1417 -hsync +vsync
    # 1856x1392 @ 60Hz (VESA) hsync: 86.3kHz
    ModeLine "1856x1392" 218.3 1856 1952 2176 2528 1392 1393 1396 1439 -hsync +vsync
    # 1856x1392 @ 75Hz (VESA) hsync: 112.5kHz
    ModeLine "1856x1392" 288.0 1856 1984 2208 2560 1392 1393 1396 1500 -hsync +vsync
    # 1920x1440 @ 60Hz (VESA) hsync: 90.0kHz
    ModeLine "1920x1440" 234.0 1920 2048 2256 2600 1440 1441 1444 1500 -hsync +vsync
    # 1920x1440 @ 75Hz (VESA) hsync: 112.5kHz
    ModeLine "1920x1440" 297.0 1920 2064 2288 2640 1440 1441 1444 1500 -hsync +vsync
    # Additional modelines
    ModeLine "1800x1440" 230 1800 1896 2088 2392 1440 1441 1444 1490 +HSync +VSync
    ModeLine "1800x1440" 250 1800 1896 2088 2392 1440 1441 1444 1490 +HSync +VSync
    # Extended modelines with GTF timings
    # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz
    ModeLine "640x480" 43.16 640 680 744 848 480 481 484 509 -HSync +Vsync
    # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz
    ModeLine "768x576" 34.96 768 792 872 976 576 577 580 597 -HSync +Vsync
    # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz
    ModeLine "768x576" 42.93 768 800 880 992 576 577 580 601 -HSync +Vsync
    # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz
    ModeLine "768x576" 45.51 768 808 888 1008 576 577 580 602 -HSync +Vsync
    # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz
    ModeLine "768x576" 51.84 768 808 888 1008 576 577 580 605 -HSync +Vsync
    # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz
    ModeLine "768x576" 62.57 768 816 896 1024 576 577 580 611 -HSync +Vsync
    # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz
    ModeLine "800x600" 68.18 800 848 936 1072 600 601 604 636 -HSync +Vsync
    # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz
    ModeLine "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsync
    # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz
    ModeLine "1152x864" 81.62 1152 1216 1336 1520 864 865 868 895 -HSync +Vsync
    # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz
    ModeLine "1152x864" 119.65 1152 1224 1352 1552 864 865 868 907 -HSync +Vsync
    # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz
    ModeLine "1152x864" 143.47 1152 1232 1360 1568 864 865 868 915 -HSync +Vsync
    # 1280x960 @ 72.00 Hz (GTF) hsync: 72.07 kHz; pclk: 124.54 MHz
    ModeLine "1280x960" 124.54 1280 1368 1504 1728 960 961 964 1001 -HSync +Vsync
    # 1280x960 @ 75.00 Hz (GTF) hsync: 75.15 kHz; pclk: 129.86 MHz
    ModeLine "1280x960" 129.86 1280 1368 1504 1728 960 961 964 1002 -HSync +Vsync
    # 1280x960 @ 100.00 Hz (GTF) hsync: 101.70 kHz; pclk: 178.99 MHz
    ModeLine "1280x960" 178.99 1280 1376 1520 1760 960 961 964 1017 -HSync +Vsync
    # 1280x1024 @ 100.00 Hz (GTF) hsync: 108.50 kHz; pclk: 190.96 MHz
    ModeLine "1280x1024" 190.96 1280 1376 1520 1760 1024 1025 1028 1085 -HSync +Vsync
    # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz
    ModeLine "1400x1050" 122.61 1400 1488 1640 1880 1050 1051 1054 1087 -HSync +Vsync
    # 1400x1050 @ 72.00 Hz (GTF) hsync: 78.77 kHz; pclk: 149.34 MHz
    ModeLine "1400x1050" 149.34 1400 1496 1648 1896 1050 1051 1054 1094 -HSync +Vsync
    # 1400x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 155.85 MHz
    ModeLine "1400x1050" 155.85 1400 1496 1648 1896 1050 1051 1054 1096 -HSync +Vsync
    # 1400x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 179.26 MHz
    ModeLine "1400x1050" 179.26 1400 1504 1656 1912 1050 1051 1054 1103 -HSync +Vsync
    # 1400x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 214.39 MHz
    ModeLine "1400x1050" 214.39 1400 1512 1664 1928 1050 1051 1054 1112 -HSync +Vsync
    # 1600x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 280.64 MHz
    ModeLine "1600x1200" 280.64 1600 1728 1904 2208 1200 1201 1204 1271 -HSync +Vsync
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Device"
    Identifier "Card0"
    Driver "i810"
    VendorName "All"
    BoardName "All"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultColorDepth 16
    SubSection "Display"
    Depth 1
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 32
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    and do startx it spits out a bunch of errors:
    X.Org X Server 1.5.3
    Release Date: 5 November 2008
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.27-ARCH i686
    Current Operating System: Linux myhost 2.6.25-ARCH #1 SMP PREEMPT Sat Jun 14 18:07:19 CEST 2008 i686
    Build Date: 17 December 2008 08:20:05PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    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: Thu Feb 5 15:57:56 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Xorg Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "PS/2 Mouse"
    (**) Option "AllowMouseOpenFail" "true"
    (**) Option "AutoAddDevices" "False"
    (**) Not automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/PEX" does not exist.
    Entry deleted from font path.
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/cyrillic".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/cyrillic").
    (WW) The directory "/usr/share/fonts/Type1" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/ttf/western" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/ttf/decoratives" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype/openoffice" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype/ttf-bitstream-vera" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/latex-ttf-fonts" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/defoma/CID" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/defoma/TrueType" does not exist.
    Entry deleted from font path.
    (==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
    (**) FontPath set to:
    /usr/share/fonts/misc:unscaled,
    /usr/share/fonts/misc,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/75dpi,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/100dpi,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Loader magic: 0x81d5fe0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 4.1
    X.Org XInput driver : 2.1
    X.Org Server Extension : 1.1
    X.Org Font Renderer : 0.6
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0@0:2:0) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xe8000000/0, 0xe0000000/0, I/O @ 0x00001800/0
    (--) PCI: (0@0:2:1) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xf0000000/0, 0xe0080000/0
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[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 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "freetype" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 1.1
    (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: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Server Extension, version 1.1
    (==) AIGLX enabled
    (==) Exporting typical set of GLX visuals
    (II) Loading extension GLX
    (II) LoadModule: "type1"
    (WW) Warning, couldn't open module type1
    (II) UnloadModule: "type1"
    (EE) Failed to load module "type1" (module does not exist, 0)
    (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 1.5.3, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.6
    (II) Loading font FreeType
    (II) LoadModule: "record"
    (WW) Warning, couldn't open module record
    (II) UnloadModule: "record"
    (EE) Failed to load module "record" (module does not exist, 0)
    (II) LoadModule: "i810"
    (II) Loading /usr/lib/xorg/modules/drivers//i810_drv.so
    (II) Module i810: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 2.4.3
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 4.1
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.3.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.3.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ,
    965GM, 965GME/GLE, G33, Q35, Q33,
    Mobile Intel® GM45 Express Chipset,
    Intel Integrated Graphics Device, G45/G43, Q45/Q43
    (II) Primary Device is: PCI 00@00:02:0
    (EE) No devices detected.
    Fatal server error:
    no screens found
    Does anybody else a a VGN-T150P or any of these problems? I'm not very good a writing/decoding xorg.conf files so if anybody could help it would be greatly appreciated
    Last edited by jsh33 (2009-02-08 14:52:01)

    I download xf86-video-fbdev just for fun before I saw your post, I didn't do anything as far as I could see.
    I commented these lines out:
    FontPath "/usr/share/fonts/Type1"
    Load "record"
    Load "type1"
    B, I didn't install any fonts but now I installed a buch of random fonts:
    pacman -S ttf-ms-fonts ttf-cheapskate artwiz-fonts xorg-fonts-75dpi xorg-fonts-100dpi
    and did some of what the X.org configuration wiki said:
    fc-cache -fv
    /usr/bin/fc-cache
    /usr/bin/mkfontscale
    /usr/bin/mkfontdir
    ln -s /usr/share/fonts/encodings/encodings.dir encodings.dir
    Then this I changed this:
    Section "Device"
    Identifier "Card0"
    Driver "intel"
    VendorName "All"
    BoardName "All"
    EndSection
    EDIT, halfway through this post I realized I type in biagio's code wrong, I re-typed it and now my X works!
    Thanks Everybody for the help! , here's the working xorg.conf for reference:
    Section "ServerLayout"
    Identifier "Xorg Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "PS/2 Mouse" "CorePointer"
    # Serial Mouse not detected
    # USB Mouse not detected
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
    Option "AutoAddDevices" "False"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    # Additional fonts: Locale, Gimp, TTF...
    FontPath "/usr/share/fonts/cyrillic"
    # FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
    # FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    # FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
    Load "ddc" # ddc probing of monitor
    Load "dbe"
    Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap" # bitmap-fonts
    # Load "type1"
    Load "freetype"
    # Load "record"
    # Load "synaptics"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
    Identifier "Serial Mouse"
    Driver "mouse"
    Option "Protocol" "Microsoft"
    Option "Device" "/dev/ttyS0"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "PS/2 Mouse"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "ZAxisMapping" "4 5"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "USB Mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "SendCoreEvents" "true"
    Option "Protocol" "IMPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "5"
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Monitor"
    Identifier "Monitor0"
    Option "DPMS" "true"
    # HorizSync 28.0 - 78.0 # Warning: This may fry very old Monitors
    HorizSync 28.0 - 96.0 # Warning: This may fry old Monitors
    VertRefresh 50.0 - 75.0 # Very conservative. May flicker.
    # VertRefresh 50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
    # Default modes distilled from
    # "VESA and Industry Standards and Guide for Computer Display Monitor
    # Timing", version 1.0, revision 0.8, adopted September 17, 1998.
    # $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
    # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "640x350" 31.5 640 672 736 832 350 382 385 445 +hsync -vsync
    # 640x400 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "640x400" 31.5 640 672 736 832 400 401 404 445 -hsync +vsync
    # 720x400 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "720x400" 35.5 720 756 828 936 400 401 404 446 -hsync +vsync
    # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz
    ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
    # 640x480 @ 72Hz (VESA) hsync: 37.9kHz
    ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
    # 640x480 @ 75Hz (VESA) hsync: 37.5kHz
    ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
    # 640x480 @ 85Hz (VESA) hsync: 43.3kHz
    ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
    # 800x600 @ 56Hz (VESA) hsync: 35.2kHz
    ModeLine "800x600" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
    # 800x600 @ 60Hz (VESA) hsync: 37.9kHz
    ModeLine "800x600" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
    # 800x600 @ 72Hz (VESA) hsync: 48.1kHz
    ModeLine "800x600" 50.0 800 856 976 1040 600 637 643 666 +hsync +vsync
    # 800x600 @ 75Hz (VESA) hsync: 46.9kHz
    ModeLine "800x600" 49.5 800 816 896 1056 600 601 604 625 +hsync +vsync
    # 800x600 @ 85Hz (VESA) hsync: 53.7kHz
    ModeLine "800x600" 56.3 800 832 896 1048 600 601 604 631 +hsync +vsync
    # 1024x768i @ 43Hz (industry standard) hsync: 35.5kHz
    ModeLine "1024x768" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync Interlace
    # 1024x768 @ 60Hz (VESA) hsync: 48.4kHz
    ModeLine "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
    # 1024x768 @ 70Hz (VESA) hsync: 56.5kHz
    ModeLine "1024x768" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
    # 1024x768 @ 75Hz (VESA) hsync: 60.0kHz
    ModeLine "1024x768" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
    # 1024x768 @ 85Hz (VESA) hsync: 68.7kHz
    ModeLine "1024x768" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
    # 1152x864 @ 75Hz (VESA) hsync: 67.5kHz
    ModeLine "1152x864" 108.0 1152 1216 1344 1600 864 865 868 900 +hsync +vsync
    # 1280x960 @ 60Hz (VESA) hsync: 60.0kHz
    ModeLine "1280x960" 108.0 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync
    # 1280x960 @ 85Hz (VESA) hsync: 85.9kHz
    ModeLine "1280x960" 148.5 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync
    # 1280x1024 @ 60Hz (VESA) hsync: 64.0kHz
    ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
    # 1280x1024 @ 75Hz (VESA) hsync: 80.0kHz
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    # 1280x1024 @ 85Hz (VESA) hsync: 91.1kHz
    ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync
    # 1600x1200 @ 60Hz (VESA) hsync: 75.0kHz
    ModeLine "1600x1200" 162.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 65Hz (VESA) hsync: 81.3kHz
    ModeLine "1600x1200" 175.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 70Hz (VESA) hsync: 87.5kHz
    ModeLine "1600x1200" 189.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 75Hz (VESA) hsync: 93.8kHz
    ModeLine "1600x1200" 202.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 85Hz (VESA) hsync: 106.3kHz
    ModeLine "1600x1200" 229.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1792x1344 @ 60Hz (VESA) hsync: 83.6kHz
    ModeLine "1792x1344" 204.8 1792 1920 2120 2448 1344 1345 1348 1394 -hsync +vsync
    # 1792x1344 @ 75Hz (VESA) hsync: 106.3kHz
    ModeLine "1792x1344" 261.0 1792 1888 2104 2456 1344 1345 1348 1417 -hsync +vsync
    # 1856x1392 @ 60Hz (VESA) hsync: 86.3kHz
    ModeLine "1856x1392" 218.3 1856 1952 2176 2528 1392 1393 1396 1439 -hsync +vsync
    # 1856x1392 @ 75Hz (VESA) hsync: 112.5kHz
    ModeLine "1856x1392" 288.0 1856 1984 2208 2560 1392 1393 1396 1500 -hsync +vsync
    # 1920x1440 @ 60Hz (VESA) hsync: 90.0kHz
    ModeLine "1920x1440" 234.0 1920 2048 2256 2600 1440 1441 1444 1500 -hsync +vsync
    # 1920x1440 @ 75Hz (VESA) hsync: 112.5kHz
    ModeLine "1920x1440" 297.0 1920 2064 2288 2640 1440 1441 1444 1500 -hsync +vsync
    # Additional modelines
    ModeLine "1800x1440" 230 1800 1896 2088 2392 1440 1441 1444 1490 +HSync +VSync
    ModeLine "1800x1440" 250 1800 1896 2088 2392 1440 1441 1444 1490 +HSync +VSync
    # Extended modelines with GTF timings
    # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz
    ModeLine "640x480" 43.16 640 680 744 848 480 481 484 509 -HSync +Vsync
    # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz
    ModeLine "768x576" 34.96 768 792 872 976 576 577 580 597 -HSync +Vsync
    # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz
    ModeLine "768x576" 42.93 768 800 880 992 576 577 580 601 -HSync +Vsync
    # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz
    ModeLine "768x576" 45.51 768 808 888 1008 576 577 580 602 -HSync +Vsync
    # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz
    ModeLine "768x576" 51.84 768 808 888 1008 576 577 580 605 -HSync +Vsync
    # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz
    ModeLine "768x576" 62.57 768 816 896 1024 576 577 580 611 -HSync +Vsync
    # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz
    ModeLine "800x600" 68.18 800 848 936 1072 600 601 604 636 -HSync +Vsync
    # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz
    ModeLine "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsync
    # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz
    ModeLine "1152x864" 81.62 1152 1216 1336 1520 864 865 868 895 -HSync +Vsync
    # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz
    ModeLine "1152x864" 119.65 1152 1224 1352 1552 864 865 868 907 -HSync +Vsync
    # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz
    ModeLine "1152x864" 143.47 1152 1232 1360 1568 864 865 868 915 -HSync +Vsync
    # 1280x960 @ 72.00 Hz (GTF) hsync: 72.07 kHz; pclk: 124.54 MHz
    ModeLine "1280x960" 124.54 1280 1368 1504 1728 960 961 964 1001 -HSync +Vsync
    # 1280x960 @ 75.00 Hz (GTF) hsync: 75.15 kHz; pclk: 129.86 MHz
    ModeLine "1280x960" 129.86 1280 1368 1504 1728 960 961 964 1002 -HSync +Vsync
    # 1280x960 @ 100.00 Hz (GTF) hsync: 101.70 kHz; pclk: 178.99 MHz
    ModeLine "1280x960" 178.99 1280 1376 1520 1760 960 961 964 1017 -HSync +Vsync
    # 1280x1024 @ 100.00 Hz (GTF) hsync: 108.50 kHz; pclk: 190.96 MHz
    ModeLine "1280x1024" 190.96 1280 1376 1520 1760 1024 1025 1028 1085 -HSync +Vsync
    # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz
    ModeLine "1400x1050" 122.61 1400 1488 1640 1880 1050 1051 1054 1087 -HSync +Vsync
    # 1400x1050 @ 72.00 Hz (GTF) hsync: 78.77 kHz; pclk: 149.34 MHz
    ModeLine "1400x1050" 149.34 1400 1496 1648 1896 1050 1051 1054 1094 -HSync +Vsync
    # 1400x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 155.85 MHz
    ModeLine "1400x1050" 155.85 1400 1496 1648 1896 1050 1051 1054 1096 -HSync +Vsync
    # 1400x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 179.26 MHz
    ModeLine "1400x1050" 179.26 1400 1504 1656 1912 1050 1051 1054 1103 -HSync +Vsync
    # 1400x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 214.39 MHz
    ModeLine "1400x1050" 214.39 1400 1512 1664 1928 1050 1051 1054 1112 -HSync +Vsync
    # 1600x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 280.64 MHz
    ModeLine "1600x1200" 280.64 1600 1728 1904 2208 1200 1201 1204 1271 -HSync +Vsync
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Device"
    Identifier "Card0"
    Driver "intel"
    VendorName "All"
    BoardName "All"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultColorDepth 16
    SubSection "Display"
    Depth 1
    Modes "1280x768" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 32
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection

  • Option "ctrl:nocaps" in /etc/X11/xorg.conf.d/10-evdev.conf ignored

    Hi all,
    I have a single-user laptop, so I'd like to configure my X keyboard layout and options globally instead of doing it for any WM/DE I might happen to use.  And most importantly, the desktop manager (GDM) should already use my layout.  So my /etc/X11/xorg.conf.d/10-evdev.conf contains this section:
    Section "InputClass"
    Identifier "evdev keyboard catchall"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    Option "XkbLayout" "de"
    Option "XkbVariant" "dvorak"
    Option "XkbOptions" "ctrl:nocaps"
    EndSection
    The result is that I have my German Dvorak layout in GDM and in whatever WM I choose there.  However, the ctrl:nocaps option seems to be ignored.  In GDM, CapsLock is still CapsLock, not an additional CTRL.  Why not?
    Here's the Xorg.0.log in case that might shed some light.  (Well, it actually only shows that the options seems to be applied to all keyboard devices...)
    [ 14.912]
    X.Org X Server 1.15.0
    Release Date: 2013-12-27
    [ 14.912] X Protocol Version 11, Revision 0
    [ 14.912] Build Operating System: Linux 3.12.5-1-ARCH x86_64
    [ 14.912] Current Operating System: Linux thinkpad-t61 3.12.9-1-ARCH #1 SMP PREEMPT Sun Jan 26 09:01:37 CET 2014 x86_64
    [ 14.912] Kernel command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sda3 rw initrd=../initramfs-linux.img
    [ 14.912] Build Date: 09 January 2014 08:47:24AM
    [ 14.912]
    [ 14.912] Current version of pixman: 0.32.4
    [ 14.912] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 14.912] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 14.912] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jan 30 08:06:06 2014
    [ 15.046] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 15.046] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 15.385] (==) No Layout section. Using the first Screen section.
    [ 15.385] (==) No screen section available. Using defaults.
    [ 15.385] (**) |-->Screen "Default Screen Section" (0)
    [ 15.385] (**) | |-->Monitor "<default monitor>"
    [ 15.415] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 15.415] (==) Automatically adding devices
    [ 15.415] (==) Automatically enabling devices
    [ 15.415] (==) Automatically adding GPU devices
    [ 15.596] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 15.596] Entry deleted from font path.
    [ 15.603] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 15.603] Entry deleted from font path.
    [ 15.603] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 15.604] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 15.604] Entry deleted from font path.
    [ 15.604] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 15.604] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 15.604] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 15.604] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 15.604] (II) Loader magic: 0x804c80
    [ 15.604] (II) Module ABI versions:
    [ 15.604] X.Org ANSI C Emulation: 0.4
    [ 15.604] X.Org Video Driver: 15.0
    [ 15.604] X.Org XInput driver : 20.0
    [ 15.604] X.Org Server Extension : 8.0
    [ 15.604] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 15.607] (--) PCI:*(0:0:2:0) 8086:2a02:17aa:20b5 rev 12, Mem @ 0xf8100000/1048576, 0xe0000000/268435456, I/O @ 0x00001800/8
    [ 15.607] (--) PCI: (0:0:2:1) 8086:2a03:17aa:20b5 rev 12, Mem @ 0xf8200000/1048576
    [ 15.607] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 15.619] Initializing built-in extension Generic Event Extension
    [ 15.619] Initializing built-in extension SHAPE
    [ 15.619] Initializing built-in extension MIT-SHM
    [ 15.619] Initializing built-in extension XInputExtension
    [ 15.619] Initializing built-in extension XTEST
    [ 15.619] Initializing built-in extension BIG-REQUESTS
    [ 15.619] Initializing built-in extension SYNC
    [ 15.619] Initializing built-in extension XKEYBOARD
    [ 15.619] Initializing built-in extension XC-MISC
    [ 15.619] Initializing built-in extension SECURITY
    [ 15.619] Initializing built-in extension XINERAMA
    [ 15.619] Initializing built-in extension XFIXES
    [ 15.619] Initializing built-in extension RENDER
    [ 15.619] Initializing built-in extension RANDR
    [ 15.619] Initializing built-in extension COMPOSITE
    [ 15.619] Initializing built-in extension DAMAGE
    [ 15.619] Initializing built-in extension MIT-SCREEN-SAVER
    [ 15.619] Initializing built-in extension DOUBLE-BUFFER
    [ 15.619] Initializing built-in extension RECORD
    [ 15.619] Initializing built-in extension DPMS
    [ 15.619] Initializing built-in extension Present
    [ 15.619] Initializing built-in extension DRI3
    [ 15.619] Initializing built-in extension X-Resource
    [ 15.619] Initializing built-in extension XVideo
    [ 15.619] Initializing built-in extension XVideo-MotionCompensation
    [ 15.619] Initializing built-in extension XFree86-VidModeExtension
    [ 15.619] Initializing built-in extension XFree86-DGA
    [ 15.619] Initializing built-in extension XFree86-DRI
    [ 15.619] Initializing built-in extension DRI2
    [ 15.619] (II) "glx" will be loaded by default.
    [ 15.619] (II) LoadModule: "dri2"
    [ 15.619] (II) Module "dri2" already built-in
    [ 15.619] (II) LoadModule: "glamoregl"
    [ 15.671] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 15.894] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 15.894] compiled for 1.15.0, module version = 0.6.0
    [ 15.894] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 15.894] (II) LoadModule: "glx"
    [ 15.894] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 15.926] (II) Module glx: vendor="X.Org Foundation"
    [ 15.926] compiled for 1.15.0, module version = 1.0.0
    [ 15.926] ABI class: X.Org Server Extension, version 8.0
    [ 15.926] (==) AIGLX enabled
    [ 15.926] Loading extension GLX
    [ 15.926] (==) Matched intel as autoconfigured driver 0
    [ 15.926] (==) Matched intel as autoconfigured driver 1
    [ 15.926] (==) Matched modesetting as autoconfigured driver 2
    [ 15.926] (==) Matched fbdev as autoconfigured driver 3
    [ 15.926] (==) Matched vesa as autoconfigured driver 4
    [ 15.926] (==) Assigned the driver to the xf86ConfigLayout
    [ 15.926] (II) LoadModule: "intel"
    [ 15.926] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 16.103] (II) Module intel: vendor="X.Org Foundation"
    [ 16.103] compiled for 1.15.0, module version = 2.21.15
    [ 16.103] Module class: X.Org Video Driver
    [ 16.103] ABI class: X.Org Video Driver, version 15.0
    [ 16.103] (II) LoadModule: "modesetting"
    [ 16.112] (WW) Warning, couldn't open module modesetting
    [ 16.112] (II) UnloadModule: "modesetting"
    [ 16.112] (II) Unloading modesetting
    [ 16.112] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 16.112] (II) LoadModule: "fbdev"
    [ 16.112] (WW) Warning, couldn't open module fbdev
    [ 16.112] (II) UnloadModule: "fbdev"
    [ 16.112] (II) Unloading fbdev
    [ 16.112] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 16.112] (II) LoadModule: "vesa"
    [ 16.112] (WW) Warning, couldn't open module vesa
    [ 16.112] (II) UnloadModule: "vesa"
    [ 16.112] (II) Unloading vesa
    [ 16.112] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 16.112] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43, HD Graphics,
    HD Graphics 2000, HD Graphics 3000, HD Graphics 2500,
    HD Graphics 4000, HD Graphics P4000, HD Graphics 4600,
    HD Graphics 5000, HD Graphics P4600/P4700, Iris(TM) Graphics 5100,
    HD Graphics 4400, HD Graphics 4200, Iris(TM) Pro Graphics 5200
    [ 16.114] (++) using VT number 1
    [ 16.139] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 16.139] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 16.139] (==) intel(0): RGB weight 888
    [ 16.139] (==) intel(0): Default visual is TrueColor
    [ 16.139] (--) intel(0): Integrated Graphics Chipset: Intel(R) 965GM
    [ 16.139] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1
    [ 16.139] (**) intel(0): Framebuffer tiled
    [ 16.139] (**) intel(0): Pixmaps tiled
    [ 16.139] (**) intel(0): "Tear free" disabled
    [ 16.139] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 16.139] (II) intel(0): Output LVDS1 has no monitor section
    [ 16.139] (--) intel(0): found backlight control interface acpi_video0 (type 'firmware')
    [ 16.139] (II) intel(0): Output VGA1 has no monitor section
    [ 16.140] (II) intel(0): Output DVI1 has no monitor section
    [ 16.140] (--) intel(0): Output LVDS1 using initial mode 1280x800 on pipe 0
    [ 16.140] (--) intel(0): Output DVI1 using initial mode 1920x1200 on pipe 1
    [ 16.140] (==) intel(0): DPI set to (96, 96)
    [ 16.140] (II) Loading sub module "dri2"
    [ 16.140] (II) LoadModule: "dri2"
    [ 16.140] (II) Module "dri2" already built-in
    [ 16.140] (==) Depth 24 pixmap format is 32 bpp
    [ 16.173] (II) intel(0): SNA initialized with Broadwater (gen4) backend
    [ 16.173] (==) intel(0): Backing store enabled
    [ 16.173] (==) intel(0): Silken mouse enabled
    [ 16.175] (II) intel(0): HW Cursor enabled
    [ 16.175] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 16.178] (==) intel(0): DPMS enabled
    [ 16.178] (II) intel(0): [XvMC] i965_xvmc driver initialized.
    [ 16.178] (II) intel(0): [DRI2] Setup complete
    [ 16.178] (II) intel(0): [DRI2] DRI driver: i965
    [ 16.178] (II) intel(0): direct rendering: DRI2 Enabled
    [ 16.178] (==) intel(0): hotplug detection: "enabled"
    [ 16.178] (--) RandR disabled
    [ 16.398] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 16.398] (II) AIGLX: enabled GLX_ARB_create_context
    [ 16.398] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 16.398] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 16.398] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 16.398] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 16.398] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 16.398] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 16.398] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 16.398] (II) AIGLX: Loaded and initialized i965
    [ 16.398] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 16.410] (II) intel(0): switch to mode [email protected] on pipe 0 using LVDS1, position (0, 0), rotation normal
    [ 16.426] (II) intel(0): switch to mode [email protected] on pipe 1 using DVI1, position (0, 0), rotation normal
    [ 16.440] (II) intel(0): Setting screen physical size to 508 x 317
    [ 16.899] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 16.899] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 16.899] (II) LoadModule: "evdev"
    [ 16.899] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 16.928] (II) Module evdev: vendor="X.Org Foundation"
    [ 16.928] compiled for 1.15.0, module version = 2.8.2
    [ 16.928] Module class: X.Org XInput Driver
    [ 16.928] ABI class: X.Org XInput driver, version 20.0
    [ 16.928] (II) Using input driver 'evdev' for 'Power Button'
    [ 16.928] (**) Power Button: always reports core events
    [ 16.928] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 16.928] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 16.928] (--) evdev: Power Button: Found keys
    [ 16.928] (II) evdev: Power Button: Configuring as keyboard
    [ 16.928] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
    [ 16.928] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 16.928] (**) Option "xkb_rules" "evdev"
    [ 16.928] (**) Option "xkb_model" "pc104"
    [ 16.928] (**) Option "xkb_layout" "de"
    [ 16.928] (**) Option "xkb_variant" "dvorak"
    [ 16.928] (**) Option "xkb_options" "ctrl:nocaps"
    [ 16.976] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
    [ 16.976] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 16.976] (II) Using input driver 'evdev' for 'Video Bus'
    [ 16.976] (**) Video Bus: always reports core events
    [ 16.976] (**) evdev: Video Bus: Device: "/dev/input/event11"
    [ 16.976] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 16.976] (--) evdev: Video Bus: Found keys
    [ 16.976] (II) evdev: Video Bus: Configuring as keyboard
    [ 16.976] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input13/event11"
    [ 16.976] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 16.976] (**) Option "xkb_rules" "evdev"
    [ 16.976] (**) Option "xkb_model" "pc104"
    [ 16.976] (**) Option "xkb_layout" "de"
    [ 16.976] (**) Option "xkb_variant" "dvorak"
    [ 16.976] (**) Option "xkb_options" "ctrl:nocaps"
    [ 16.977] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 16.977] (II) No input driver specified, ignoring this device.
    [ 16.977] (II) This device may have been added with another device file.
    [ 16.977] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
    [ 16.977] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 16.977] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 16.977] (**) Sleep Button: always reports core events
    [ 16.977] (**) evdev: Sleep Button: Device: "/dev/input/event2"
    [ 16.977] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 16.977] (--) evdev: Sleep Button: Found keys
    [ 16.977] (II) evdev: Sleep Button: Configuring as keyboard
    [ 16.977] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3/event2"
    [ 16.977] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 16.977] (**) Option "xkb_rules" "evdev"
    [ 16.977] (**) Option "xkb_model" "pc104"
    [ 16.977] (**) Option "xkb_layout" "de"
    [ 16.977] (**) Option "xkb_variant" "dvorak"
    [ 16.977] (**) Option "xkb_options" "ctrl:nocaps"
    [ 16.977] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 16.978] (II) config/udev: Adding input device HID 04b3:3107 (/dev/input/event12)
    [ 16.978] (**) HID 04b3:3107: Applying InputClass "evdev pointer catchall"
    [ 16.978] (II) Using input driver 'evdev' for 'HID 04b3:3107'
    [ 16.978] (**) HID 04b3:3107: always reports core events
    [ 16.978] (**) evdev: HID 04b3:3107: Device: "/dev/input/event12"
    [ 16.978] (--) evdev: HID 04b3:3107: Vendor 0x4b3 Product 0x3107
    [ 16.978] (--) evdev: HID 04b3:3107: Found 3 mouse buttons
    [ 16.978] (--) evdev: HID 04b3:3107: Found scroll wheel(s)
    [ 16.978] (--) evdev: HID 04b3:3107: Found relative axes
    [ 16.978] (--) evdev: HID 04b3:3107: Found x and y relative axes
    [ 16.978] (II) evdev: HID 04b3:3107: Configuring as mouse
    [ 16.978] (II) evdev: HID 04b3:3107: Adding scrollwheel support
    [ 16.978] (**) evdev: HID 04b3:3107: YAxisMapping: buttons 4 and 5
    [ 16.978] (**) evdev: HID 04b3:3107: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 16.978] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb3/3-4/3-4.6/3-4.6.1/3-4.6.1:1.0/input/input14/event12"
    [ 16.978] (II) XINPUT: Adding extended input device "HID 04b3:3107" (type: MOUSE, id 9)
    [ 16.978] (II) evdev: HID 04b3:3107: initialized for relative axes.
    [ 16.978] (**) HID 04b3:3107: (accel) keeping acceleration scheme 1
    [ 16.978] (**) HID 04b3:3107: (accel) acceleration profile 0
    [ 16.978] (**) HID 04b3:3107: (accel) acceleration factor: 2.000
    [ 16.978] (**) HID 04b3:3107: (accel) acceleration threshold: 4
    [ 16.979] (II) config/udev: Adding input device HID 04b3:3107 (/dev/input/mouse1)
    [ 16.979] (II) No input driver specified, ignoring this device.
    [ 16.979] (II) This device may have been added with another device file.
    [ 16.979] (II) config/udev: Adding input device USB Keyboard (/dev/input/event13)
    [ 16.979] (**) USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 16.979] (II) Using input driver 'evdev' for ' USB Keyboard'
    [ 16.979] (**) USB Keyboard: always reports core events
    [ 16.979] (**) evdev: USB Keyboard: Device: "/dev/input/event13"
    [ 16.979] (--) evdev: USB Keyboard: Vendor 0x4d9 Product 0x2013
    [ 16.979] (--) evdev: USB Keyboard: Found keys
    [ 16.979] (II) evdev: USB Keyboard: Configuring as keyboard
    [ 16.979] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb3/3-4/3-4.6/3-4.6.4/3-4.6.4:1.0/input/input15/event13"
    [ 16.979] (II) XINPUT: Adding extended input device " USB Keyboard" (type: KEYBOARD, id 10)
    [ 16.979] (**) Option "xkb_rules" "evdev"
    [ 16.979] (**) Option "xkb_model" "pc104"
    [ 16.979] (**) Option "xkb_layout" "de"
    [ 16.979] (**) Option "xkb_variant" "dvorak"
    [ 16.979] (**) Option "xkb_options" "ctrl:nocaps"
    [ 16.980] (II) config/udev: Adding input device USB Keyboard (/dev/input/event14)
    [ 16.980] (**) USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 16.980] (II) Using input driver 'evdev' for ' USB Keyboard'
    [ 16.980] (**) USB Keyboard: always reports core events
    [ 16.980] (**) evdev: USB Keyboard: Device: "/dev/input/event14"
    [ 16.980] (--) evdev: USB Keyboard: Vendor 0x4d9 Product 0x2013
    [ 16.980] (--) evdev: USB Keyboard: Found keys
    [ 16.980] (II) evdev: USB Keyboard: Configuring as keyboard
    [ 16.980] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb3/3-4/3-4.6/3-4.6.4/3-4.6.4:1.1/input/input16/event14"
    [ 16.980] (II) XINPUT: Adding extended input device " USB Keyboard" (type: KEYBOARD, id 11)
    [ 16.980] (**) Option "xkb_rules" "evdev"
    [ 16.980] (**) Option "xkb_model" "pc104"
    [ 16.980] (**) Option "xkb_layout" "de"
    [ 16.980] (**) Option "xkb_variant" "dvorak"
    [ 16.980] (**) Option "xkb_options" "ctrl:nocaps"
    [ 16.981] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
    [ 16.981] (II) No input driver specified, ignoring this device.
    [ 16.981] (II) This device may have been added with another device file.
    [ 16.981] (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event8)
    [ 16.981] (II) No input driver specified, ignoring this device.
    [ 16.981] (II) This device may have been added with another device file.
    [ 16.981] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event7)
    [ 16.981] (II) No input driver specified, ignoring this device.
    [ 16.981] (II) This device may have been added with another device file.
    [ 16.981] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event6)
    [ 16.981] (II) No input driver specified, ignoring this device.
    [ 16.981] (II) This device may have been added with another device file.
    [ 16.982] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 16.982] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 16.982] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 16.982] (**) AT Translated Set 2 keyboard: always reports core events
    [ 16.982] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 16.982] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 16.982] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 16.982] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 16.982] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 16.982] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
    [ 16.982] (**) Option "xkb_rules" "evdev"
    [ 16.982] (**) Option "xkb_model" "pc104"
    [ 16.982] (**) Option "xkb_layout" "de"
    [ 16.982] (**) Option "xkb_variant" "dvorak"
    [ 16.982] (**) Option "xkb_options" "ctrl:nocaps"
    [ 16.982] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event10)
    [ 16.982] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 16.982] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 16.983] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 16.983] (II) LoadModule: "synaptics"
    [ 16.983] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 16.994] (II) Module synaptics: vendor="X.Org Foundation"
    [ 16.994] compiled for 1.15.0, module version = 1.7.3
    [ 16.994] Module class: X.Org XInput Driver
    [ 16.994] ABI class: X.Org XInput driver, version 20.0
    [ 16.994] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 16.994] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 16.995] (**) Option "Device" "/dev/input/event10"
    [ 17.100] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472 (res 93)
    [ 17.100] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448 (res 125)
    [ 17.100] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 17.100] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 17.100] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right
    [ 17.100] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 17.100] (**) Option "TapButton1" "1"
    [ 17.100] (**) Option "TapButton2" "2"
    [ 17.100] (**) Option "TapButton3" "3"
    [ 17.100] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 17.100] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 17.163] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input11/event10"
    [ 17.163] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
    [ 17.163] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 17.163] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 17.163] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.040
    [ 17.164] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 17.164] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 17.164] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 17.164] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 17.164] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 17.165] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 17.165] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 17.166] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event15)
    [ 17.166] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 17.166] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
    [ 17.166] (**) TPPS/2 IBM TrackPoint: always reports core events
    [ 17.166] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event15"
    [ 17.166] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
    [ 17.166] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    [ 17.166] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
    [ 17.166] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
    [ 17.166] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
    [ 17.166] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    [ 17.166] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17.166] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input12/event15"
    [ 17.166] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 14)
    [ 17.166] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
    [ 17.167] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    [ 17.167] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
    [ 17.167] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
    [ 17.167] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
    [ 17.168] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse2)
    [ 17.168] (II) No input driver specified, ignoring this device.
    [ 17.168] (II) This device may have been added with another device file.
    [ 17.168] (II) config/udev: Adding input device PC Speaker (/dev/input/event9)
    [ 17.168] (II) No input driver specified, ignoring this device.
    [ 17.168] (II) This device may have been added with another device file.
    [ 17.170] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event4)
    [ 17.170] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 17.170] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
    [ 17.170] (**) ThinkPad Extra Buttons: always reports core events
    [ 17.170] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event4"
    [ 17.170] (--) evdev: ThinkPad Extra Buttons: Vendor 0x17aa Product 0x5054
    [ 17.170] (--) evdev: ThinkPad Extra Buttons: Found keys
    [ 17.170] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
    [ 17.170] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input5/event4"
    [ 17.170] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 15)
    [ 17.170] (**) Option "xkb_rules" "evdev"
    [ 17.170] (**) Option "xkb_model" "pc104"
    [ 17.170] (**) Option "xkb_layout" "de"
    [ 17.170] (**) Option "xkb_variant" "dvorak"
    [ 17.170] (**) Option "xkb_options" "ctrl:nocaps"
    [ 23.199] (II) intel(0): EDID vendor "LEN", prod id 16464
    [ 23.201] (II) intel(0): Printing DDC gathered Modelines:
    [ 23.201] (II) intel(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (49.3 kHz eP)
    [ 23.201] (II) intel(0): Modeline "1280x800"x0.0 59.26 1280 1304 1336 1408 800 803 809 816 -hsync -vsync (42.1 kHz e)
    [ 23.900] (II) intel(0): resizing framebuffer to 3200x1200
    [ 23.921] (II) intel(0): switch to mode [email protected] on pipe 0 using LVDS1, position (0, 0), rotation normal
    [ 23.990] (II) intel(0): switch to mode [email protected] on pipe 1 using DVI1, position (0, 0), rotation normal
    [ 23.997] (II) intel(0): switch to mode [email protected] on pipe 0 using DVI1, position (1280, 0), rotation normal
    [ 24.533] (II) intel(0): switch to mode [email protected] on pipe 1 using LVDS1, position (0, 0), rotation normal
    [ 48.537] (II) intel(0): switch to mode [email protected] on pipe 1 using DVI1, position (0, 0), rotation normal
    [ 49.105] (II) intel(0): switch to mode [email protected] on pipe 0 using LVDS1, position (1920, 0), rotation normal

    Kebertx wrote:I have the exact same problem (now on version 3.12), and commented on your bug report. Did you ever get this issue resolved? Furthermore, did GDM apply some of your keyboard settings but not others - were you getting a dvorak layout but not the caps-lock control key?
    Yes, exactly.  I do get the Dvorak layout that's set in 10-evdev.conf, but not the ctrl:nocaps option that's set there as well.

  • Arch64 ati radeon 3870 radeonhd driver. Problem with xorg.conf.

    I've got a small problem with my xorg. I won't hide that i'm not a xorg nerd and i've used the automatic xorg tool to generate the xorg.conf. After starting X, the screen goes black and then after ~5 seconds  montior switches to power-saving mode.
    So here we go.
    That's xorg.conf
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "extmod"
    Load "record"
    Load "dri2"
    Load "dbe"
    Load "dri"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "AccelMethod" # [<str>]
    #Option "offscreensize" # [<str>]
    #Option "SWcursor" # [<bool>]
    #Option "ignoreconnector" # [<str>]
    #Option "forcereduced" # [<bool>]
    #Option "forcedpi" # <i>
    #Option "useconfiguredmonitor" # [<bool>]
    #Option "HPD" # <str>
    #Option "NoRandr" # [<bool>]
    #Option "RROutputOrder" # [<str>]
    #Option "DRI" # [<bool>]
    #Option "TVMode" # [<str>]
    #Option "ScaleType" # [<str>]
    #Option "UseAtomBIOS" # [<bool>]
    #Option "AtomBIOS" # [<str>]
    #Option "UnverifiedFeatures" # [<bool>]
    #Option "Audio" # [<bool>]
    #Option "HDMI" # [<str>]
    #Option "COHERENT" # [<str>]
    Identifier "Card0"
    Driver "radeonhd"
    VendorName "ATI Technologies Inc"
    BoardName "Radeon HD 3870"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "AccelMethod" # [<str>]
    #Option "offscreensize" # [<str>]
    #Option "SWcursor" # [<bool>]
    #Option "ignoreconnector" # [<str>]
    #Option "forcereduced" # [<bool>]
    #Option "forcedpi" # <i>
    #Option "useconfiguredmonitor" # [<bool>]
    #Option "HPD" # <str>
    #Option "NoRandr" # [<bool>]
    #Option "RROutputOrder" # [<str>]
    #Option "DRI" # [<bool>]
    #Option "TVMode" # [<str>]
    #Option "ScaleType" # [<str>]
    #Option "UseAtomBIOS" # [<bool>]
    #Option "AtomBIOS" # [<str>]
    #Option "UnverifiedFeatures" # [<bool>]
    #Option "Audio" # [<bool>]
    #Option "HDMI" # [<str>]
    #Option "COHERENT" # [<str>]
    Identifier "Card1"
    Driver "radeonhd"
    VendorName "ATI Technologies Inc"
    BoardName "Radeon HD 3870"
    BusID "PCI:2:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Card1"
    Monitor "Monitor1"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    and that's the log
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.6.3.901 (1.6.4 RC 1)
    Release Date: 2009-8-25
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH x86_64
    Current Operating System: Linux kasia 2.6.31-ARCH #1 SMP PREEMPT Tue Oct 13 11:33:39 CEST 2009 x86_64
    Build Date: 04 September 2009 05:45:43PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    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: Wed Oct 21 20:31:45 2009
    (++) Using config file: "xorg.conf.new"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (**) |-->Screen "Screen1" (1)
    (**) | |-->Monitor "Monitor1"
    (**) | |-->Device "Card1"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/TTF" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/Type1" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/TTF" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/Type1" does not exist.
    Entry deleted from font path.
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    built-ins
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Mouse0
    (WW) Disabling Keyboard0
    (II) Loader magic: 0x1d40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (--) using VT number 7
    (!!) More than one possible primary device found
    (--) PCI: (0:1:0:0) 1002:9501:1458:21a4 ATI Technologies Inc Radeon HD 3870 rev 0, Mem @ 0xd0000000/268435456, 0xf7000000/65536, I/O @ 0x0000a000/256, BIOS @ 0x????????/131072
    (--) PCI: (0:2:0:0) 1002:9501:1458:21a4 ATI Technologies Inc Radeon HD 3870 rev 0, Mem @ 0xe0000000/268435456, 0xf5000000/65536, I/O @ 0x0000b000/256, BIOS @ 0x????????/131072
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[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 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "radeonhd"
    (II) Loading /usr/lib/xorg/modules/drivers//radeonhd_drv.so
    (II) Module radeonhd: vendor="AMD GPG"
    compiled for 1.6.0, module version = 1.2.5
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) RADEONHD: X driver for the following AMD GPG (ATI) graphics devices:
    RV505 : Radeon X1550, X1550 64bit.
    RV515 : Radeon X1300, X1550, X1600; FireGL V3300, V3350.
    RV516 : Radeon X1300, X1550, X1550 64-bit, X1600; FireMV 2250.
    R520 : Radeon X1800; FireGL V5300, V7200, V7300, V7350.
    RV530 : Radeon X1300 XT, X1600, X1600 Pro, X1650; FireGL V3400, V5200.
    RV535 : Radeon X1300, X1650.
    RV550 : Radeon X2300 HD.
    RV560 : Radeon X1650.
    RV570 : Radeon X1950, X1950 GT; FireGL V7400.
    R580 : Radeon X1900, X1950; AMD Stream Processor.
    R600 : Radeon HD 2900 GT/Pro/XT; FireGL V7600/V8600/V8650.
    RV610 : Radeon HD 2350, HD 2400 Pro/XT, HD 2400 Pro AGP; FireGL V4000.
    RV620 : Radeon HD 3450, HD 3470.
    RV630 : Radeon HD 2600 LE/Pro/XT, HD 2600 Pro/XT AGP; Gemini RV630;
    FireGL V3600/V5600.
    RV635 : Radeon HD 3650, HD 3670.
    RV670 : Radeon HD 3690, 3850, HD 3870, FireGL V7700, FireStream 9170.
    R680 : Radeon HD 3870 X2.
    M52 : Mobility Radeon X1300.
    M54 : Mobility Radeon X1400; M54-GL.
    M56 : Mobility Radeon X1600; Mobility FireGL V5200.
    M58 : Mobility Radeon X1800, X1800 XT; Mobility FireGL V7100, V7200.
    M62 : Mobility Radeon X1350.
    M64 : Mobility Radeon X1450, X2300.
    M66 : Mobility Radeon X1700, X1700 XT; FireGL V5250.
    M68 : Mobility Radeon X1900.
    M71 : Mobility Radeon HD 2300.
    M72 : Mobility Radeon HD 2400; Radeon E2400.
    M74 : Mobility Radeon HD 2400 XT.
    M76 : Mobility Radeon HD 2600;
    (Gemini ATI) Mobility Radeon HD 2600 XT.
    M82 : Mobility Radeon HD 3400.
    M86 : Mobility Radeon HD 3650, HD 3670, Mobility FireGL V5700.
    M88 : Mobility Radeon HD 3850, HD 3850 X2, HD 3870, HD3870 X2.
    RS600 : Radeon Xpress 1200, Xpress 1250.
    RS690 : Radeon X1200, X1250, X1270.
    RS740 : RS740, RS740M.
    RS780 : Radeon HD 3100/3200/3300 Series.
    RV770 : Radeon HD 4800 Series; Everest, K2, Denali ATI FirePro.
    R700 : Radeon R700.
    M98 : Radeon M98 Mobility.
    RV730 : Radeon HD4670, HD4650.
    M96 : Radeon M96 Mobility.
    RV710 : Radeon HD4570, HD4350.
    (II) RADEONHD: version 1.2.5, built from dist of git branch master, commit cb54f48b
    (II) Primary Device is:
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[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 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[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 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[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] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] 1 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [8] 1 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [9] 1 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [10] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [11] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [12] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [13] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    [14] 1 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [15] 1 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (==) RADEONHD(0): Depth 24, (--) framebuffer bpp 32
    (**) RADEONHD(0): Selected ShadowFB.
    (II) RADEONHD(0): Unknown card detected: 0x9501:0x1458:0x21A4.
    If - and only if - your card does not work or does not work optimally
    please contact [email protected] to help rectify this.
    Use the subject: 0x9501:0x1458:0x21A4: <name of board>
    and *please* describe the problems you are seeing
    in your message.
    (--) RADEONHD(0): Detected an RV670 on an unidentified card
    (II) RADEONHD(0): Mapped IO @ 0xf7000000 to 0x7f39ca36f000 (size 0x00010000)
    (II) RADEONHD(0): PCIE Card Detected
    (II) RADEONHD(0): Getting BIOS copy from PCI ROM
    (II) RADEONHD(0): ATOM BIOS Rom:
    SubsystemVendorID: 0x1458 SubsystemID: 0x21a4
    IOBaseAddress: 0xa000
    Filename: Test.bin
    BIOS Bootup Message:
    GV-RX387512HP_F10
    (II) RADEONHD(0): Default Engine Clock: 825000
    (II) RADEONHD(0): Default Memory Clock: 900000
    (II) RADEONHD(0): Calling ASIC Init
    (II) RADEONHD(0): ASIC_INIT Successful
    (II) RADEONHD(0): Analog TV Default Mode: 1
    (II) RADEONHD(0): Found default TV Mode NTSC
    (II) RADEONHD(0): The detected amount of videoram exceeds the PCI BAR aperture.
    (II) RADEONHD(0): Using only 262144kB of the total 524288kB.
    (--) RADEONHD(0): VideoRAM: 262144 kByte
    (II) RADEONHD(0): Framebuffer space used by Firmware (kb): 16
    (II) RADEONHD(0): Start of VRAM area used by Firmware: 0x1fffc000
    (II) RADEONHD(0): AtomBIOS requests 16kB of VRAM scratch space
    (II) RADEONHD(0): AtomBIOS VRAM scratch base: 0x1fffc000
    (WW) RADEONHD(0): rhdAtomAllocateFbScratch: FW FB scratch area 536854528 (size: 16384) extends beyond available framebuffer size 268435456
    (II) RADEONHD(0): Cannot get VRAM scratch space. Allocating in main memory instead
    (II) RADEONHD(0): Default Engine Clock: 825000
    (II) RADEONHD(0): Default Memory Clock: 900000
    (II) RADEONHD(0): Maximum Pixel ClockPLL Frequency Output: 1200000
    (II) RADEONHD(0): Minimum Pixel ClockPLL Frequency Output: 0
    (II) RADEONHD(0): Maximum Pixel ClockPLL Frequency Input: 13500
    (II) RADEONHD(0): Minimum Pixel ClockPLL Frequency Input: 1000
    (II) RADEONHD(0): Maximum Pixel Clock: 400000
    (II) RADEONHD(0): Reference Clock: 27000
    (II) RADEONHD(0): Direct rendering not officially supported on R600 and up
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) RADEONHD(0): Reference Clock: 27000
    (II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f90
    (II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0
    (II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f90
    (II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8
    (II) RADEONHD(0): I2C bus "RHD I2C line 0" initialized.
    (II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f94
    (II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0
    (II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f94
    (II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8
    (II) RADEONHD(0): I2C bus "RHD I2C line 1" initialized.
    (II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f98
    (II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0
    (II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f98
    (II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8
    (II) RADEONHD(0): I2C bus "RHD I2C line 2" initialized.
    (II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f80
    (II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0
    (II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f80
    (II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8
    (II) RADEONHD(0): I2C bus "RHD I2C line 3" initialized.
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) RADEONHD(0): Detected VGA mode.
    (II) RADEONHD(0): Minimum Pixel ClockPLL Frequency Output: 0
    (II) RADEONHD(0): Maximum Pixel ClockPLL Frequency Output: 1200000
    (II) RADEONHD(0): Maximum Pixel Clock: 400000
    (II) RADEONHD(0): Reference Clock: 27000
    (II) RADEONHD(0): FB: Allocated Cursor Image at offset 0x00000000 (size = 0x00004000)
    (II) RADEONHD(0): FB: Allocated Cursor Image at offset 0x00004000 (size = 0x00004000)
    (II) RADEONHD(0): Connector[0] {RHD_CONNECTOR_DVI, "DUAL_LINK_DVI_I DFP1 CRT2", RHD_DDC_1, RHD_HPD_0, { RHD_OUTPUT_TMDSA, RHD_OUTPUT_DACB } }
    (II) RADEONHD(0): Connector[1] {RHD_CONNECTOR_TV, "7PIN_DIN TV1 CV", RHD_DDC_0, RHD_HPD_NONE, { RHD_OUTPUT_DACB, RHD_OUTPUT_NONE } }
    (II) RADEONHD(0): Connector[2] {RHD_CONNECTOR_DVI, "DUAL_LINK_DVI_I CRT1 DFP2", RHD_DDC_0, RHD_HPD_1, { RHD_OUTPUT_LVTMA, RHD_OUTPUT_DACA } }
    (--) RADEONHD(0): Attaching Output TMDS A to Connector DVI-I 1
    (--) RADEONHD(0): Attaching Output DAC B to Connector DVI-I 1
    (--) RADEONHD(0): Attaching Output DAC B to Connector TV 7PIN_DIN
    (--) RADEONHD(0): Attaching Output TMDS B to Connector DVI-I 2
    (--) RADEONHD(0): Attaching Output DAC A to Connector DVI-I 2
    (II) RADEONHD(0): RandR: Adding RRoutput DVI-I_1/digital for Output TMDS A
    (II) RADEONHD(0): RandR: Adding RRoutput DVI-I_1/analog for Output DAC B
    (II) RADEONHD(0): RandR: Adding RRoutput TV_7PIN_DIN for Output DAC B
    (II) RADEONHD(0): RandR: Adding RRoutput DVI-I_2/digital for Output TMDS B
    (II) RADEONHD(0): RandR: Adding RRoutput DVI-I_2/analog for Output DAC A
    (II) RADEONHD(0): Output DVI-I_1/digital using monitor section Monitor0
    (II) RADEONHD(0): Output DVI-I_1/digital has no monitor section
    (II) RADEONHD(0): Output DVI-I_1/analog has no monitor section
    (II) RADEONHD(0): Output TV_7PIN_DIN has no monitor section
    (II) RADEONHD(0): Output DVI-I_2/digital has no monitor section
    (II) RADEONHD(0): Output DVI-I_2/analog has no monitor section
    (II) RADEONHD(0): TMDS A: Sensed Output: DVI
    (II) RADEONHD(0): Setting TMDS A to incoherent
    (II) RADEONHD(0): I2C device "RHD I2C line 1:E-EDID segment register" registered at address 0x60.
    (II) RADEONHD(0): I2C device "RHD I2C line 1:ddc2" registered at address 0xA0.
    (II) RADEONHD(0): EDID data for W2253
    (II) RADEONHD(0): Manufacturer: GSM Model: 56dc Serial#: 385315
    (II) RADEONHD(0): Year: 2009 Week: 5
    (II) RADEONHD(0): EDID Version: 1.3
    (II) RADEONHD(0): Digital Display Input
    (II) RADEONHD(0): Max Image Size [cm]: horiz.: 49 vert.: 32
    (II) RADEONHD(0): Gamma: 2.20
    (II) RADEONHD(0): DPMS capabilities: StandBy Suspend Off
    (II) RADEONHD(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    (II) RADEONHD(0): First detailed timing is preferred mode
    (II) RADEONHD(0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.600
    (II) RADEONHD(0): blueX: 0.150 blueY: 0.060 whiteX: 0.312 whiteY: 0.329
    (II) RADEONHD(0): Supported established timings:
    (II) RADEONHD(0): 720x400@70Hz
    (II) RADEONHD(0): 640x480@60Hz
    (II) RADEONHD(0): 640x480@75Hz
    (II) RADEONHD(0): 800x600@56Hz
    (II) RADEONHD(0): 800x600@60Hz
    (II) RADEONHD(0): 800x600@75Hz
    (II) RADEONHD(0): 832x624@75Hz
    (II) RADEONHD(0): 1024x768@60Hz
    (II) RADEONHD(0): 1024x768@75Hz
    (II) RADEONHD(0): 1280x1024@75Hz
    (II) RADEONHD(0): 1152x870@75Hz
    (II) RADEONHD(0): Manufacturer's mask: 0
    (II) RADEONHD(0): Supported standard timings:
    (II) RADEONHD(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    (II) RADEONHD(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    (II) RADEONHD(0): #2: hsize: 1280 vsize 1024 refresh: 75 vid: 36737
    (II) RADEONHD(0): #3: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    (II) RADEONHD(0): Supported detailed timing:
    (II) RADEONHD(0): clock: 138.5 MHz Image Size: 510 x 290 mm
    (II) RADEONHD(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    (II) RADEONHD(0): v_active: 1080 v_sync: 1083 v_sync_end 1088 v_blanking: 1111 v_border: 0
    (II) RADEONHD(0): Supported detailed timing:
    (II) RADEONHD(0): clock: 148.5 MHz Image Size: 510 x 290 mm
    (II) RADEONHD(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    (II) RADEONHD(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    (II) RADEONHD(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 150 MHz
    (II) RADEONHD(0): Monitor name: W2253
    (II) RADEONHD(0): EDID (in hex):
    (II) RADEONHD(0): 00ffffffffffff001e6ddc5623e10500
    (II) RADEONHD(0): 0513010380312078eaee91a3544c9926
    (II) RADEONHD(0): 0f5054a76b80b3008180818f714f0101
    (II) RADEONHD(0): 0101010101011a3680a070381f403020
    (II) RADEONHD(0): 3500fe221100001e023a801871382d40
    (II) RADEONHD(0): 582c4500fe221100001c000000fd0038
    (II) RADEONHD(0): 4b1e530f000a202020202020000000fc
    (II) RADEONHD(0): 0057323235330a202020202020200081
    (II) RADEONHD(0): EDID vendor "GSM", prod id 22236
    (II) RADEONHD(0): Using EDID range info for horizontal sync
    (II) RADEONHD(0): Using EDID range info for vertical refresh
    (II) RADEONHD(0): Printing DDC gathered Modelines:
    (II) RADEONHD(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync +vsync (66.6 kHz)
    (II) RADEONHD(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 -hsync +vsync (67.5 kHz)
    (II) RADEONHD(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) RADEONHD(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    (II) RADEONHD(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    (II) RADEONHD(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) RADEONHD(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    (II) RADEONHD(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    (II) RADEONHD(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    (II) RADEONHD(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) RADEONHD(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    (II) RADEONHD(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    (II) RADEONHD(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    (II) RADEONHD(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
    (II) RADEONHD(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    (II) RADEONHD(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    (II) RADEONHD(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    (II) RADEONHD(0): Output DVI-I_1/digital connected
    (II) RADEONHD(0): Output DVI-I_1/analog disconnected
    (II) RADEONHD(0): Output TV_7PIN_DIN disconnected
    (II) RADEONHD(0): Output DVI-I_2/digital disconnected
    (II) RADEONHD(0): Output DVI-I_2/analog disconnected
    (II) RADEONHD(0): Using exact sizes for initial modes
    (II) RADEONHD(0): Output DVI-I_1/digital using initial mode 1920x1080
    (II) RADEONHD(0): RandR 1.2 support enabled
    (==) RADEONHD(0): RGB weight 888
    (==) RADEONHD(0): Default visual is TrueColor
    (==) RADEONHD(0): Using gamma correction (1.0, 1.0, 1.0)
    (II) RADEONHD(0): Using 1920x1920 Framebuffer with 1920 pitch
    (II) RADEONHD(0): FB: Allocated ScanoutBuffer at offset 0x00008000 (size = 0x00E10000)
    (**) RADEONHD(0): Display dimensions: (490, 320) mm
    (**) RADEONHD(0): DPI set to (99, 152)
    (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 1.6.3.901, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) Loading sub module "shadow"
    (II) LoadModule: "shadow"
    (II) Loading /usr/lib/xorg/modules//libshadow.so
    (II) Module shadow: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.1.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) RADEONHD(0): Using ShadowFB
    (==) RADEONHD(1): Depth 24, (--) framebuffer bpp 32
    (**) RADEONHD(1): Selected ShadowFB.
    (II) RADEONHD(1): Unknown card detected: 0x9501:0x1458:0x21A4.
    If - and only if - your card does not work or does not work optimally
    please contact [email protected] to help rectify this.
    Use the subject: 0x9501:0x1458:0x21A4: <name of board>
    and *please* describe the problems you are seeing
    in your message.
    (--) RADEONHD(1): Detected an RV670 on an unidentified card
    (II) RADEONHD(1): Mapped IO @ 0xf5000000 to 0x7f39ca36f000 (size 0x00010000)
    (II) RADEONHD(1): PCIE Card Detected
    (II) RADEONHD(1): Getting BIOS copy from PCI ROM
    (II) RADEONHD(1): ATOM BIOS Rom:
    SubsystemVendorID: 0x1458 SubsystemID: 0x21a4
    IOBaseAddress: 0x0000
    Filename: Test.bin
    BIOS Bootup Message:
    GV-RX387512HP_F10
    (II) RADEONHD(1): Default Engine Clock: 825000
    (II) RADEONHD(1): Default Memory Clock: 900000
    (II) RADEONHD(1): Calling ASIC Init
    (II) RADEONHD(1): ASIC_INIT Successful
    (II) RADEONHD(1): Analog TV Default Mode: 27049664
    (II) RADEONHD(1): The detected amount of videoram exceeds the PCI BAR aperture.
    (II) RADEONHD(1): Using only 262144kB of the total 524288kB.
    (--) RADEONHD(1): VideoRAM: 262144 kByte
    (II) RADEONHD(1): Framebuffer space used by Firmware (kb): 0
    (WW) RADEONHD(1): rhdAtomGetFbBaseAndSize: AtomBIOS specified VRAM scratch space size invalid
    (II) RADEONHD(1): default to: 20480
    (II) RADEONHD(1): Cannot get VRAM scratch space. Allocating in main memory instead
    (II) RADEONHD(1): Default Engine Clock: 825000
    (II) RADEONHD(1): Default Memory Clock: 900000
    (II) RADEONHD(1): Maximum Pixel ClockPLL Frequency Output: 1200000
    (II) RADEONHD(1): Minimum Pixel ClockPLL Frequency Output: 0
    (II) RADEONHD(1): Maximum Pixel ClockPLL Frequency Input: 13500
    (II) RADEONHD(1): Minimum Pixel ClockPLL Frequency Input: 1000
    (II) RADEONHD(1): Maximum Pixel Clock: 400000
    (II) RADEONHD(1): Reference Clock: 27000
    (II) RADEONHD(1): Direct rendering not officially supported on R600 and up
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) RADEONHD(1): Reference Clock: 27000
    (II) RADEONHD(1): GPIO_I2C_Clk_Mask: 0x1f90
    (II) RADEONHD(1): GPIO_I2C_Clk_Mask_Shift: 0x0
    (II) RADEONHD(1): GPIO_I2C_Data_Mask: 0x1f90
    (II) RADEONHD(1): GPIO_I2C_Data_Mask_Shift: 0x8
    (II) RADEONHD(1): I2C bus "RHD I2C line 0" initialized.
    (II) RADEONHD(1): GPIO_I2C_Clk_Mask: 0x1f94
    (II) RADEONHD(1): GPIO_I2C_Clk_Mask_Shift: 0x0
    (II) RADEONHD(1): GPIO_I2C_Data_Mask: 0x1f94
    (II) RADEONHD(1): GPIO_I2C_Data_Mask_Shift: 0x8
    (II) RADEONHD(1): I2C bus "RHD I2C line 1" initialized.
    (II) RADEONHD(1): GPIO_I2C_Clk_Mask: 0x1f98
    (II) RADEONHD(1): GPIO_I2C_Clk_Mask_Shift: 0x0
    (II) RADEONHD(1): GPIO_I2C_Data_Mask: 0x1f98
    (II) RADEONHD(1): GPIO_I2C_Data_Mask_Shift: 0x8
    (II) RADEONHD(1): I2C bus "RHD I2C line 2" initialized.
    (II) RADEONHD(1): GPIO_I2C_Clk_Mask: 0x1f80
    (II) RADEONHD(1): GPIO_I2C_Clk_Mask_Shift: 0x0
    (II) RADEONHD(1): GPIO_I2C_Data_Mask: 0x1f80
    (II) RADEONHD(1): GPIO_I2C_Data_Mask_Shift: 0x8
    (II) RADEONHD(1): I2C bus "RHD I2C line 3" initialized.
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) RADEONHD(1): Detected VGA mode.
    (II) RADEONHD(1): Minimum Pixel ClockPLL Frequency Output: 0
    (II) RADEONHD(1): Maximum Pixel ClockPLL Frequency Output: 1200000
    (II) RADEONHD(1): Maximum Pixel Clock: 400000
    (II) RADEONHD(1): Reference Clock: 27000
    (II) RADEONHD(1): FB: Allocated Cursor Image at offset 0x00000000 (size = 0x00004000)
    (II) RADEONHD(1): FB: Allocated Cursor Image at offset 0x00004000 (size = 0x00004000)
    (II) RADEONHD(1): Connector[0] {RHD_CONNECTOR_DVI, "DUAL_LINK_DVI_I DFP1 CRT2", RHD_DDC_1, RHD_HPD_0, { RHD_OUTPUT_TMDSA, RHD_OUTPUT_DACB } }
    (II) RADEONHD(1): Connector[1] {RHD_CONNECTOR_TV, "7PIN_DIN TV1 CV", RHD_DDC_0, RHD_HPD_NONE, { RHD_OUTPUT_DACB, RHD_OUTPUT_NONE } }
    (II) RADEONHD(1): Connector[2] {RHD_CONNECTOR_DVI, "DUAL_LINK_DVI_I CRT1 DFP2", RHD_DDC_0, RHD_HPD_1, { RHD_OUTPUT_LVTMA, RHD_OUTPUT_DACA } }
    (--) RADEONHD(1): Attaching Output TMDS A to Connector DVI-I 1
    (--) RADEONHD(1): Attaching Output DAC B to Connector DVI-I 1
    (--) RADEONHD(1): Attaching Output DAC B to Connector TV 7PIN_DIN
    (--) RADEONHD(1): Attaching Output TMDS B to Connector DVI-I 2
    (--) RADEONHD(1): Attaching Output DAC A to Connector DVI-I 2
    (II) RADEONHD(1): RandR: Adding RRoutput DVI-I_1/digital for Output TMDS A
    (II) RADEONHD(1): RandR: Adding RRoutput DVI-I_1/analog for Output DAC B
    (II) RADEONHD(1): RandR: Adding RRoutput TV_7PIN_DIN for Output DAC B
    (II) RADEONHD(1): RandR: Adding RRoutput DVI-I_2/digital for Output TMDS B
    (II) RADEONHD(1): RandR: Adding RRoutput DVI-I_2/analog for Output DAC A
    (II) RADEONHD(1): Output DVI-I_1/digital using monitor section Monitor1
    (II) RADEONHD(1): Output DVI-I_1/digital has no monitor section
    (II) RADEONHD(1): Output DVI-I_1/analog has no monitor section
    (II) RADEONHD(1): Output TV_7PIN_DIN has no monitor section
    (II) RADEONHD(1): Output DVI-I_2/digital has no monitor section
    (II) RADEONHD(1): Output DVI-I_2/analog has no monitor section
    (II) RADEONHD(1): Output DVI-I_1/digital disconnected
    (II) RADEONHD(1): Output DVI-I_1/analog disconnected
    (II) RADEONHD(1): Output TV_7PIN_DIN disconnected
    (II) RADEONHD(1): Output DVI-I_2/digital disconnected
    (II) RADEONHD(1): Output DVI-I_2/analog disconnected
    (WW) RADEONHD(1): No outputs definitely connected, trying again...
    (II) RADEONHD(1): Output DVI-I_1/digital disconnected
    (II) RADEONHD(1): Output DVI-I_1/analog disconnected
    (II) RADEONHD(1): Output TV_7PIN_DIN disconnected
    (II) RADEONHD(1): Output DVI-I_2/digital disconnected
    (II) RADEONHD(1): Output DVI-I_2/analog disconnected
    (WW) RADEONHD(1): Unable to find initial modes
    (EE) RADEONHD(1): RandR: No valid modes. Disabling RandR support.
    (EE) RADEONHD(1): Failed to detect a connected monitor
    (II) RADEONHD(1): Destroying TMDS A
    (II) RADEONHD(1): Destroying DAC B
    (II) RADEONHD(1): Destroying TMDS B
    (II) RADEONHD(1): Destroying DAC A
    (II) RADEONHD(1): I2C bus "RHD I2C line 0" removed.
    (II) RADEONHD(1): I2C bus "RHD I2C line 1" removed.
    (II) RADEONHD(1): I2C bus "RHD I2C line 2" removed.
    (II) RADEONHD(1): I2C bus "RHD I2C line 3" removed.
    (II) UnloadModule: "radeonhd"
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[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] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) RADEONHD(0): Mapped IO @ 0xf7000000 to 0x7f39ca36f000 (size 0x00010000)
    (II) RADEONHD(0): Mapped FB @ 0xd0000000 to 0x7f39b66f6000 (size 0x10000000)
    (WW) RADEONHD(0): RHDCSInit: No CS for R600 and up yet.
    (==) RADEONHD(0): Backing store disabled
    (==) RADEONHD(0): Silken mouse enabled
    (II) RADEONHD(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (II) RADEONHD(0): On Crtc 0 Setting 59.9 Hz Mode: Modeline "1920x1080" 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync +vsync
    None
    (II) RADEONHD(0): RHDAudioSetClock: using TMDS A as clock source with 138500 khz
    (II) RADEONHD(0): Using ACR timing N=4096 CTS=138500 for frequency 32000
    (II) RADEONHD(0): Using ACR timing N=6272 CTS=153888 for frequency 44100
    (II) RADEONHD(0): Using ACR timing N=6144 CTS=138500 for frequency 48000
    (II) RADEONHD(0): RHDAudioSetSupported: config 0x60040 codec 0x1
    (II) RADEONHD(0): DPMS enabled
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (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) AIGLX: Screen 0 is not DRI2 capable
    (II) AIGLX: Screen 0 is not DRI capable
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/swrast_dri.so
    (II) GLX: Initialized DRISWRAST GL provider for screen 0
    (II) RADEONHD(0): Setting screen physical size to 510 x 290
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 2.2.5
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) Macintosh mouse button emulation: initialized for relative axes.
    (II) config/hal: Adding input device ImPS/2 Logitech Wheel Mouse
    (**) ImPS/2 Logitech Wheel Mouse: always reports core events
    (**) ImPS/2 Logitech Wheel Mouse: Device: "/dev/input/event5"
    (II) ImPS/2 Logitech Wheel Mouse: Found 3 mouse buttons
    (II) ImPS/2 Logitech Wheel Mouse: Found x and y relative axes
    (II) ImPS/2 Logitech Wheel Mouse: Found scroll wheel(s)
    (II) ImPS/2 Logitech Wheel Mouse: Configuring as mouse
    (**) ImPS/2 Logitech Wheel Mouse: YAxisMapping: buttons 4 and 5
    (**) ImPS/2 Logitech Wheel Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "ImPS/2 Logitech Wheel Mouse" (type: MOUSE)
    (**) ImPS/2 Logitech Wheel Mouse: (accel) keeping acceleration scheme 1
    (**) ImPS/2 Logitech Wheel Mouse: (accel) filter chain progression: 2.00
    (**) ImPS/2 Logitech Wheel Mouse: (accel) filter stage 0: 20.00 ms
    (**) ImPS/2 Logitech Wheel Mouse: (accel) set acceleration profile 0
    (II) ImPS/2 Logitech Wheel Mouse: initialized for relative axes.
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event4"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event3"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) RADEONHD(0): RHDHdmiUpdateAudioSettings: stoped with 1 channels, 48000 Hz sampling rate, 8 bits per sample,
    (II) RADEONHD(0): RHDHdmiUpdateAudioSettings: 0x00 IEC60958 status bits and 0x00 category code
    (II) RADEONHD(0): RHDHdmiUpdateAudioSettings: stoped with 1 channels, 48000 Hz sampling rate, 8 bits per sample,
    (II) RADEONHD(0): RHDHdmiUpdateAudioSettings: 0x00 IEC60958 status bits and 0x00 category code
    (II) Macintosh mouse button emulation: Close
    (II) UnloadModule: "evdev"
    (II) ImPS/2 Logitech Wheel Mouse: Close
    (II) UnloadModule: "evdev"
    (II) AT Translated Set 2 keyboard: Close
    (II) UnloadModule: "evdev"
    (II) Power Button: Close
    (II) UnloadModule: "evdev"
    (II) Power Button: Close
    (II) UnloadModule: "evdev"
    Last edited by warnab (2009-10-21 18:53:12)

    i'm getting then such log
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.6.3.901 (1.6.4 RC 1)
    Release Date: 2009-8-25
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH x86_64
    Current Operating System: Linux kasia 2.6.31-ARCH #1 SMP PREEMPT Tue Oct 13 11:33:39 CEST 2009 x86_64
    Build Date: 04 September 2009 05:45:43PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    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: Wed Oct 21 22:35:22 2009
    (II) Loader magic: 0x1d40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (--) using VT number 7
    (!!) More than one possible primary device found
    (--) PCI: (0:1:0:0) 1002:9501:1458:21a4 ATI Technologies Inc Radeon HD 3870 rev 0, Mem @ 0xd0000000/268435456, 0xf7000000/65536, I/O @ 0x0000a000/256, BIOS @ 0x????????/131072
    (--) PCI: (0:2:0:0) 1002:9501:1458:21a4 ATI Technologies Inc Radeon HD 3870 rev 0, Mem @ 0xe0000000/268435456, 0xf5000000/65536, I/O @ 0x0000b000/256, BIOS @ 0x????????/131072
    Primary device is not PCI
    (==) Using default built-in configuration (21 lines)
    (==) --- Start of built-in configuration ---
    Section "Device"
    Identifier "Builtin Default vesa Device 0"
    Driver "vesa"
    EndSection
    Section "Screen"
    Identifier "Builtin Default vesa Screen 0"
    Device "Builtin Default vesa Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default fbdev Device 0"
    Driver "fbdev"
    EndSection
    Section "Screen"
    Identifier "Builtin Default fbdev Screen 0"
    Device "Builtin Default fbdev Device 0"
    EndSection
    Section "ServerLayout"
    Identifier "Builtin Default Layout"
    Screen "Builtin Default vesa Screen 0"
    Screen "Builtin Default fbdev Screen 0"
    EndSection
    (==) --- End of built-in configuration ---
    (==) ServerLayout "Builtin Default Layout"
    (**) |-->Screen "Builtin Default vesa Screen 0" (0)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default vesa Device 0"
    (==) No monitor specified for screen "Builtin Default vesa Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default fbdev Screen 0" (1)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default fbdev Device 0"
    (==) No monitor specified for screen "Builtin Default fbdev Screen 0".
    Using a default monitor configuration.
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/TTF" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/Type1" does not exist.
    Entry deleted from font path.
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[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 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "vesa"
    (WW) Warning, couldn't open module vesa
    (II) UnloadModule: "vesa"
    (EE) Failed to load module "vesa" (module does not exist, 0)
    (II) LoadModule: "fbdev"
    (WW) Warning, couldn't open module fbdev
    (II) UnloadModule: "fbdev"
    (EE) Failed to load module "fbdev" (module does not exist, 0)
    (EE) No drivers available.
    Fatal server error:
    no screens found
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    Please also check the log file at "/var/log/Xorg.0.log" for additional information.

  • [SOLVED] Prev working xorg.conf won't work with new nvidia

    So I just upgraded to the latest nvidia driver.  Previously, my xfx 6600 and dell 2001fp could display 1600x1200 just fine, but now it's ratcheting X down to 1400x1050 (even though 1600x1200 is the only option I've specified in the xorg.conf).
    Any ideas? 
    Here's a relevant piece of the X log:
    (II) NVIDIA(0): Not using default mode "1280x1024" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "640x512" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1792x1344" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "896x672" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1792x1344" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "896x672" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1856x1392" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "928x696" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1856x1392" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "928x696" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1152x768" (vrefresh out of range)
    (II) NVIDIA(0): Not using default mode "576x384" (vrefresh out of range)
    (II) NVIDIA(0): Not using default mode "1400x1050" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "700x525" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using mode "1600x1200" (no mode of this name)
    (**) NVIDIA(0): Validated modes for display device DFP-0:
    (**) NVIDIA(0): Default mode "1400x1050": 122.0 MHz, 64.9 kHz, 60.0 Hz
    Here's my xorg.conf (sorry for the length):
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5x) man page for details about the format of
    # this file.
    # Module section -- this section is used to specify
    # which dynamically loadable modules to load.
    Section "Module"
    # This loads the DBE extension module.
    Load "dbe" # Double buffer extension
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    # This loads the font modules
    Load "type1"
    # Load "speedo"
    Load "freetype"
    # Load "xtt"
    # This loads the GLX module
    Load "glx"
    # This loads the DRI module
    # Load "dri"
    EndSection
    # Files section. This allows default font and rgb paths to be set
    Section "Files"
    # The location of the RGB database. Note, this is the name of the
    # file minus the extension (like ".txt" or ".db"). There is normally
    # no need to change the default.
    RgbPath "/usr/X11R6/lib/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
    FontPath "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath "/usr/X11R6/lib/X11/fonts/TTF/"
    FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
    FontPath "/usr/X11R6/lib/X11/fonts/CID/"
    FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
    FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
    FontPath "/usr/X11R6/lib/X11/fonts/local/"
    # FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
    # FontPath "/usr/X11R6/lib/X11/fonts/TrueType/"
    # FontPath "/usr/X11R6/lib/X11/fonts/freefont/"
    # The module search path. The default path is shown here.
    # ModulePath "/usr/X11R6/lib/modules"
    EndSection
    # 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
    # Option "NoTrapSignals"
    # Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
    # (where n is 1 through 12). This allows clients to receive these key
    # events.
    # Option "DontVTSwitch"
    # Uncomment this to disable the <Crtl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    # Option "DontZap"
    # Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching
    # sequences. This allows clients to receive these key events.
    # Option "Dont Zoom"
    # Uncomment this to disable tuning with the xvidtune client. With
    # it the client can still run and fetch card and monitor attributes,
    # but it will not be allowed to change them. If it tries it will
    # receive a protocol error.
    # Option "DisableVidModeExtension"
    # Uncomment this to enable the use of a non-local xvidtune client.
    # Option "AllowNonLocalXvidtune"
    # Uncomment this to disable dynamically modifying the input device
    # (mouse and keyboard) settings.
    # Option "DisableModInDev"
    # Uncomment this to enable the use of a non-local client to
    # change the keyboard or mouse settings (currently only xset).
    # Option "AllowNonLocalModInDev"
    EndSection
    # Input devices
    # Core keyboard's InputDevice section
    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "kbd"
    # For most OSs the protocol can be omitted (it defaults to "Standard").
    # When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
    # uncomment the following line.
    # Option "Protocol" "Xqueue"
    Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    # Option "Xleds" "1 2 3"
    # Option "LeftAlt" "Meta"
    # Option "RightAlt" "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults). For example, for a non-U.S.
    # keyboard, you will probably want to use:
    # Option "XkbModel" "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    # Option "XkbModel" "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    # Option "XkbLayout" "de"
    # or:
    # Option "XkbLayout" "de"
    # Option "XkbVariant" "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    # Option "XkbOptions" "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "us"
    # Option "XkbVariant" ""
    # Option "XkbOptions" ""
    # Option "XkbDisable"
    Option "XkbRules" "xorg"
    Option "XkbModel" "microsoft"
    Option "XkbLayout" "us"
    EndSection
    # Core Pointer's InputDevice section
    Section "InputDevice"
    # Identifier and driver
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "ExplorerPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Device" "/dev/psaux"
    # Mouse-speed setting for PS/2 mouse.
    # Option "Resolution" "256"
    # When using XQUEUE, comment out the above two lines, and uncomment
    # the following line.
    # Option "Protocol" "Xqueue"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    # Option "BaudRate" "9600"
    # Option "SampleRate" "150"
    # Emulate3Buttons is an option for 2-button Microsoft mice
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    # Option "Emulate3Buttons"
    # Option "Emulate3Timeout" "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    # Option "ChordMiddle"
    EndSection
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices. This is for example only. Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    # Identifier "Mouse2"
    # Driver "mouse"
    # Option "Protocol" "MouseMan"
    # Option "Device" "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball"
    # Driver "magellan"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball2"
    # Driver "spaceorb"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen0"
    # Driver "microtouch"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "1412"
    # Option "MaxX" "15184"
    # Option "MinY" "15372"
    # Option "MaxY" "1230"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen1"
    # Driver "elo2300"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "231"
    # Option "MaxX" "3868"
    # Option "MinY" "3858"
    # Option "MaxY" "272"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonThreshold" "17"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    Section "Monitor"
    Identifier "dell lcd"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    HorizSync 31-79
    # HorizSync 30-64 # multisync
    # HorizSync 31.5, 35.2 # multiple fixed sync frequencies
    # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    VertRefresh 50-100
    EndSection
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    Section "Device"
    Identifier "Standard VGA"
    VendorName "Unknown"
    BoardName "Unknown"
    # The chipset line is optional in most cases. It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    # Chipset "generic"
    # The Driver line must be present. When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module. Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    Driver "vga"
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for. When this line isn't present, a device
    # section can only match up with the primary video device. For PCI
    # devices a line like the following could be used. This line should not
    # normally be included unless there is more than one video device
    # intalled.
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    EndSection
    # Device configured by xorgconfig:
    Section "Device"
    Identifier "xfx"
    Driver "nvidia"
    #VideoRam 262144
    # Insert Clocks lines here if appropriate
    EndSection
    # Screen sections
    # Any number of screen sections may be present. Each describes
    # the configuration of a single screen. A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    Section "Screen"
    Identifier "Screen 1"
    Device "xfx"
    Monitor "dell lcd"
    DefaultDepth 24
    Subsection "Display"
    Depth 8
    Modes
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 16
    Modes
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 24
    Modes "1600x1200"
    ViewPort 0 0
    EndSubsection
    EndSection
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present. Each describes
    # the way multiple screens are organised. A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option. In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    Section "ServerLayout"
    # The Identifier line must be present
    Identifier "Simple Layout"
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens. The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen. In this example, screen 2 is located to the
    # right of screen 1.
    Screen "Screen 1"
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used. Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    # Section "DRI"
    # Mode 0666
    # EndSection
    thanks

    http://www.nvnews.net/vbulletin/showthread.php?t=51431
    Here's the one I'm using:
    Modeline "1600x1200" 140.00 1600 1632 2024 2052 1200 1200 1208 1216

  • [SOLVED]Xorg.conf, mouse config problem

    The Rapoo M765 mouse can not work properly under normal mouse configuration.
    The mouse goes beyond controll when config as below:
    hacksign@XSign [14:13:13] : ~
    >> cat /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
    #Section "InputClass"
    # Identifier "Mouse2"
    # MatchProduct "RAPOO RAPOO 2.4G Remote Mouse"
    # MatchIsPointer "yes"
    # MatchDevicePath "/dev/input/event*"
    # Driver "mouse"
    # Option "Protocol" "auto"
    # Option "Emulate3Buttons" "no"
    # Option "Buttons" "7"
    # Option "ButtonMapping" "1 2 3 6 7"
    #EndSection
    When there is no any configuration, the mouse can work abnormally. Movement and right/left click work fine, but I can not use scroll wheel,and the "go forward"&"go backward" mouse key can not work too.
    (I know Option "ZAxisMapping" "4 5" is the configuration of scroll wheel emulation.)
    The real problem is 'mouse beyond controll',the cursor goes crazyly on screen ....
    I guess it is something wrong of ButtonMapping option. But when I tried to get button number from command xev,when scroll wheel scrolles, I get something below(the scroll wheel movement is identified as a key event~):
    //left click
    ButtonPress event, serial 34, synthetic NO, window 0x4a00001,
    root 0x264, subw 0x0, time 3766452, (135,143), root:(2287,595),
    state 0x0, button 1, same_screen YES
    ButtonRelease event, serial 34, synthetic NO, window 0x4a00001,
    root 0x264, subw 0x0, time 3766588, (135,143), root:(2287,595),
    state 0x100, button 1, same_screen YES
    //right click
    ButtonPress event, serial 34, synthetic NO, window 0x4a00001,
    root 0x264, subw 0x0, time 3767716, (135,143), root:(2287,595),
    state 0x0, button 3, same_screen YES
    ButtonRelease event, serial 34, synthetic NO, window 0x4a00001,
    root 0x264, subw 0x0, time 3767852, (135,143), root:(2287,595),
    state 0x400, button 3, same_screen YES
    //mouse scroll, identified as keyboard event(?)
    KeyRelease event, serial 34, synthetic NO, window 0x4a00001,
    root 0x264, subw 0x0, time 3769332, (135,143), root:(2287,595),
    state 0x0, keycode 123 (keysym 0x1008ff13, XF86AudioRaiseVolume), same_screen YES,
    XLookupString gives 0 bytes:
    XFilterEvent returns: False
    KeyPress event, serial 34, synthetic NO, window 0x4a00001,
    root 0x264, subw 0x0, time 3769332, (135,143), root:(2287,595),
    state 0x0, keycode 122 (keysym 0x1008ff11, XF86AudioLowerVolume), same_screen YES,
    XLookupString gives 0 bytes:
    XmbLookupString gives 0 bytes:
    XFilterEvent returns: False
    here is some Information(I dont know why the mouse is identified as 'type:KEYBOARD'):
    hacksign@XSign [14:55:03] : ~
    >> xinput
    ⎡ Virtual core pointer id=2 [master pointer (3)]
    ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
    ⎜ ↳ RAPOO RAPOO 2.4G Remote Mouse id=13 [slave pointer (2)]
    ⎜ ↳ SynPS/2 Synaptics TouchPad id=15 [slave pointer (2)]
    ⎜ ↳ TPPS/2 IBM TrackPoint id=16 [slave pointer (2)]
    ⎣ Virtual core keyboard id=3 [master keyboard (2)]
    ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
    ↳ Power Button id=6 [slave keyboard (3)]
    ↳ Video Bus id=7 [slave keyboard (3)]
    ↳ Sleep Button id=8 [slave keyboard (3)]
    ↳ Heng Yu Technology Poker Pro S id=9 [slave keyboard (3)]
    ↳ Heng Yu Technology Poker Pro S id=10 [slave keyboard (3)]
    ↳ Integrated Camera id=11 [slave keyboard (3)]
    ↳ RAPOO RAPOO 2.4G Remote Mouse id=12 [slave keyboard (3)]
    ↳ AT Translated Set 2 keyboard id=14 [slave keyboard (3)]
    ↳ ThinkPad Extra Buttons id=17 [slave keyboard (3)]
    hacksign@XSign [14:55:06] : ~
    >> xinput list-props 13
    Device 'RAPOO RAPOO 2.4G Remote Mouse':
    Device Enabled (142): 1
    Coordinate Transformation Matrix (144): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    Device Accel Profile (270): 0
    Device Accel Constant Deceleration (271): 1.000000
    Device Accel Adaptive Deceleration (272): 1.000000
    Device Accel Velocity Scaling (273): 10.000000
    Device Product ID (260): 9390, 8192
    Device Node (261): "/dev/input/event8"
    Evdev Axis Inversion (274): 0, 0
    Evdev Axes Swap (276): 0
    Axis Labels (277): "Rel X" (152), "Rel Y" (153), "Rel Horiz Wheel" (267), "Rel Dial" (268), "Rel Vert Wheel" (269)
    Button Labels (278): "Button Left" (145), "Button Middle" (146), "Button Right" (147), "Button Wheel Up" (148), "Button Wheel Down" (149), "Button Horiz Wheel Left" (150), "Button Horiz Wheel Right" (151), "Button Side" (265), "Button Extra" (266), "Button Unknown" (263), "Button Unknown" (263), "Button Unknown" (263), "Button Unknown" (263)
    Evdev Scrolling Distance (279): 1, 1, 1
    Evdev Middle Button Emulation (280): 0
    Evdev Middle Button Timeout (281): 50
    Evdev Third Button Emulation (282): 0
    Evdev Third Button Emulation Timeout (283): 1000
    Evdev Third Button Emulation Button (284): 3
    Evdev Third Button Emulation Threshold (285): 20
    Evdev Wheel Emulation (286): 0
    Evdev Wheel Emulation Axes (287): 0, 0, 4, 5
    Evdev Wheel Emulation Inertia (288): 10
    Evdev Wheel Emulation Timeout (289): 200
    Evdev Wheel Emulation Button (290): 4
    Evdev Drag Lock Buttons (291): 0
    hacksign@XSign [14:55:14] : ~
    >> grep -i rapoo /var/log/Xorg.0.log
    [ 29.102] (II) config/udev: Adding input device RAPOO RAPOO 2.4G Remote Mouse (/dev/input/event7)
    [ 29.102] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "evdev keyboard catchall"
    [ 29.102] (II) Using input driver 'evdev' for 'RAPOO RAPOO 2.4G Remote Mouse'
    [ 29.102] (**) RAPOO RAPOO 2.4G Remote Mouse: always reports core events
    [ 29.102] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: Device: "/dev/input/event7"
    [ 29.102] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Vendor 0x24ae Product 0x2000
    [ 29.102] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found keys
    [ 29.102] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Configuring as keyboard
    [ 29.102] (II) XINPUT: Adding extended input device "RAPOO RAPOO 2.4G Remote Mouse" (type: KEYBOARD, id 12)
    [ 29.103] (II) config/udev: Adding input device RAPOO RAPOO 2.4G Remote Mouse (/dev/input/event8)
    [ 29.103] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "evdev pointer catchall"
    [ 29.103] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "evdev keyboard catchall"
    [ 29.103] (II) Using input driver 'evdev' for 'RAPOO RAPOO 2.4G Remote Mouse'
    [ 29.103] (**) RAPOO RAPOO 2.4G Remote Mouse: always reports core events
    [ 29.103] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: Device: "/dev/input/event8"
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Vendor 0x24ae Product 0x2000
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found 9 mouse buttons
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found scroll wheel(s)
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found relative axes
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found x and y relative axes
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found absolute axes
    [ 29.103] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Forcing absolute x/y axes to exist.
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found keys
    [ 29.103] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Configuring as mouse
    [ 29.103] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Configuring as keyboard
    [ 29.103] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Adding scrollwheel support
    [ 29.103] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: YAxisMapping: buttons 4 and 5
    [ 29.103] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 29.103] (II) XINPUT: Adding extended input device "RAPOO RAPOO 2.4G Remote Mouse" (type: KEYBOARD, id 13)
    [ 29.104] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: initialized for relative axes.
    [ 29.104] (WW) evdev: RAPOO RAPOO 2.4G Remote Mouse: ignoring absolute axes.
    [ 29.104] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) keeping acceleration scheme 1
    [ 29.104] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) acceleration profile 0
    [ 29.104] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) acceleration factor: 2.000
    [ 29.104] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) acceleration threshold: 4
    [ 29.104] (II) config/udev: Adding input device RAPOO RAPOO 2.4G Remote Mouse (/dev/input/mouse0)
    hacksign@XSign [14:59:47] : ~
    >> yaourt -Q|grep -i 'input-'
    local/xf86-input-evdev-trackpoint 2.9.1-1
    extra/xf86-input-keyboard 1.8.0-3 (xorg-drivers xorg)
    extra/xf86-input-mouse 1.9.1-1 (xorg-drivers xorg)
    extra/xf86-input-synaptics 1.8.1-1 (xorg-drivers xorg)
    Last edited by Hacksign (2015-01-14 02:22:51)

    Thanks for reply !
    change Driver 'mouse' to Driver 'evdev',solved cursor goes beyond controll problem.
    but I still can not use scroll button and 'go forward'&'go backward' button.
    (BTW:evdev_drv.so is from local/xf86-input-evdev-trackpoint, and local/xf86-input-evdev-trackpoint package is from AUR)
    I think, maybe something wrong with my button number mapping, but I still can not get scroll button number with 'xev' command....
    below is my configuration:
    hacksign@XSign [17:15:19] : /var/log
    >> cat /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
    Section "InputClass"
    Identifier "Mouse2"
    MatchProduct "RAPOO RAPOO 2.4G Remote Mouse"
    MatchIsPointer "yes"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    Option "Protocol" "auto"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "9"
    Option "ButtonMapping" "1 2 3 6 7 8 9 4 5"
    EndSection
    and here is Xorg.0.log
    [ 11357.287] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "evdev keyboard catchall"
    [ 11357.287] (II) Using input driver 'evdev' for 'RAPOO RAPOO 2.4G Remote Mouse'
    [ 11357.287] (**) RAPOO RAPOO 2.4G Remote Mouse: always reports core events
    [ 11357.287] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: Device: "/dev/input/event7"
    [ 11357.287] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Vendor 0x24ae Product 0x2000
    [ 11357.287] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found keys
    [ 11357.287] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Configuring as keyboard
    [ 11357.287] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/0003:24AE:2000.0003/input/input8/event7"
    [ 11357.288] (II) XINPUT: Adding extended input device "RAPOO RAPOO 2.4G Remote Mouse" (type: KEYBOARD, id 12)
    [ 11357.288] (**) Option "xkb_rules" "evdev"
    [ 11357.288] (**) Option "xkb_model" "pc104"
    [ 11357.288] (**) Option "xkb_layout" "us"
    [ 11357.288] (II) config/udev: Adding input device RAPOO RAPOO 2.4G Remote Mouse (/dev/input/event8)
    [ 11357.288] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "evdev pointer catchall"
    [ 11357.288] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "evdev keyboard catchall"
    [ 11357.288] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "Mouse2"
    [ 11357.288] (II) Using input driver 'evdev' for 'RAPOO RAPOO 2.4G Remote Mouse'
    [ 11357.288] (**) RAPOO RAPOO 2.4G Remote Mouse: always reports core events
    [ 11357.288] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: Device: "/dev/input/event8"
    [ 11357.288] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: ButtonMapping '1 2 3 6 7 8 9 4 5'
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Vendor 0x24ae Product 0x2000
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found 9 mouse buttons
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found scroll wheel(s)
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found relative axes
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found x and y relative axes
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found absolute axes
    [ 11357.288] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Forcing absolute x/y axes to exist.
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found keys
    [ 11357.288] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Configuring as mouse
    [ 11357.288] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Configuring as keyboard
    [ 11357.288] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Adding scrollwheel support
    [ 11357.288] (**) Option "Emulate3Buttons" "no"
    [ 11357.288] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: YAxisMapping: buttons 4 and 5
    [ 11357.288] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 11357.288] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.1/0003:24AE:2000.0004/input/input9/event8"
    [ 11357.288] (II) XINPUT: Adding extended input device "RAPOO RAPOO 2.4G Remote Mouse" (type: KEYBOARD, id 13)
    [ 11357.288] (**) Option "xkb_rules" "evdev"
    [ 11357.288] (**) Option "xkb_model" "pc104"
    [ 11357.288] (**) Option "xkb_layout" "us"
    [ 11357.288] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: initialized for relative axes.
    [ 11357.288] (WW) evdev: RAPOO RAPOO 2.4G Remote Mouse: ignoring absolute axes.
    [ 11357.289] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) keeping acceleration scheme 1
    [ 11357.289] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) acceleration profile 0
    [ 11357.289] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) acceleration factor: 2.000
    [ 11357.289] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) acceleration threshold: 4
    [ 11357.289] (II) config/udev: Adding input device RAPOO RAPOO 2.4G Remote Mouse (/dev/input/mouse0)
    [ 11357.289] (II) No input driver specified, ignoring this device.
    [ 11357.289] (II) This device may have been added with another device file.
    olive wrote:In the config file you mentioned, all is commented; do you mean that you have problems when you have uncommented it? You should not use the mouse driver (old deprecated driver) but evdev. Try to remove xf86-input-mouse and xf86-input-keyboard (same as before, this is deprecated and handled by evdev) and remove also a "joystick" driver if you have it (I have had problem with it conflicting with the evdev driver).
    Last edited by Hacksign (2015-01-13 09:27:06)

Maybe you are looking for

  • At what time you have looked at a message according to the "read" function.

    I was wondering, if you look at a message that was sent to you through iMessage again and you have the "read" function enabled, will the time that you viewed the message change. The reason to why I am wondering this is because I received a message at

  • No HD video out?

    Was I mistaken? I thought I could upload my 720p HD videos directly from my iPhone 4 to youtube, email, mms etc. Every option I have tried compresses the video before uploading, and the result on the receiving end isn't 720p, it's something smaller.

  • Business Content Inventory Management (0IC_C03) Cube

    I am thinking of adding a data staging ODS to our Inventory Management model.  However, I wanted to check whether the delivered cube 0IC_C03 is aggregated or whether it is a representation of the R3 extraction.  If the latter is the case I do not see

  • Transfer photo album to iphone 4S

    how do i put photo albums on my iphone 4s

  • Installing Lotus Portlet in different zones

    Has anyone successfully installed The Lotus portlets into a zone other than the default? I have installed the provider successfully and gotten the confirmation page, but I haven't been able to register it as an external application. The problem appea