View Single Post
Old 12-12-2007   #2 (permalink)
zillah
Linux Newbie
 
Join Date: Nov 2002
Posts: 135
Mouse is optical logitech wired USB

cat /etc/X11/xorg.conf (it is not copy and paste, I had to typed them, therefore if there is any misspelling do not count that )
Code:
Section "ServerLayout"
         Identifier         "x.org configured"
         Screen        0    "Screen 0" 0 0
         InputDevice        "Mouse0" "Core Pointer"
         InputDevice        "Keyboard0" "Corekeyboard"
EndSection

Section "Files"
         RgbPath            "/usr/share/X11/rgb"
         ModulePath         "/usr/lib/xorg/modules"
         FontPath           "Unix/:7100
         FontPath           "built-ins"
EndSection


Section  "Module"
         Load               "Glcore"
         Load               "extmod"
         Load               "vnc"
         Load               "dri"
         Load               "dbe"
         Load               "glx"
         Load               "xtrap"
         Load               "record"
EndSection

Section  "InputDevice"
         Identifier         "keyboard"
         Driver             "kbd"
EndSection


Section  "InputDevice"
         Identifier          "Mouse0"
         Driver              "Mouse"
         Option              "Protocol" "auto"
         Option              "Device" "/dev/input/mice"
         Option              "ZAxis Mapping" "4 5 6 7"
EndSection


Section  "Monitor"
          #Displyzise      330  210  mm
          Identifier      "Monitor"
          VendorName      "SEC"
          ModelName       "3633"
EndSection


Section  "Device"
          Identifier      "Card0"
          Driver          "i810"
          VendorName      "Intel Corporation"
          BoardName       "Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
          BusID           "PCI:0:2:0"
EndSection


Section  "Screen"
          Identifier      "Screen0"
          Device          "Card0"
          Monitor         "Monitor0"
          SubSection      "Disply"
                Viewpoint   0  0
                Depth       1
          EndSubSection
          SubSection      "Display"
                Viewpoint   0  0
                Depth       4
          EndSubSection
          SubSection      "Display"
                Viewpoint   0  0
                Depth       8
          EndSubSection
          SubSection      "Display"
                Viewpoint   0  0
                Depth       15
          EndSubSection
          SubSection      "Display"
                Viewpoint   0  0
                Depth       16
          EndSubSection
          SubSection      "Display"
                Viewpoint   0  0
                Depth       24
          EndSubSection
EndSection
zillah is offline   Reply With Quote