LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Occasional "Monitor output has changed" error message (https://www.linuxquestions.org/questions/slackware-14/occasional-monitor-output-has-changed-error-message-881716/)

trainee 05-19-2011 10:02 PM

Occasional "Monitor output has changed" error message
 
Occasionally, when startx, I got the error message: "Monitor output has changed" error message ( and sometimes it appear while I am working in X too but rarer). Whenever this happened, my screen changes to "1024x768" resolution when normally it is "1280x800".
I click on "Configure", a "Configure Display" windows appear and I have to change the screen to Size"1280x800" back (since it would give me 1024x768"). Besides, the number of error messages will be up to 50s, 60s message. (This "Configure Display" is what you get when you go to "Application->System->"Screen Resize and Rotate" (KRandRTray))

My computer is Toshiba Satellite L500, the distro is Slackware 13.37. It was just installed so all the configuration is out of the box.

What should I do to fix this? Thank you for your response.

business_kid 05-20-2011 03:50 AM

Weird. It sounds like your monitor identifies itself differently each time. You might solve it with a file in /etc/hal/fdi/policy, but I'm not going to write it for you.
You might solve it with a file in /etc/X11/xorg.conf.d, which describes both monitors, and X will simply use the one that it finds.specify Aspect ratio (16:9) in each).
You might also solve it by saving default modes in the monitor.

trainee 05-20-2011 11:51 AM

What file should I create in xorg.conf.d? Or is there any document where I can read about it? I tried "man xorg.conf.d" but it does not show anything. I do found a file xorg.conf-vesa in /etc/X11. Should I do anything with it?
It seems to me that you suggest the HAL was doing the identifying the hardware and probing the driver for it. Is there anyway I can solidify it (meaning find out a best possible configuration and point to it anytime I need to startx)? I tried xorgconfig, but it is obsolete now.

Thank you.

business_kid 05-21-2011 03:30 AM

There are a few .conf bits supplied with slackware - don't ask me where.

It's the same syntax as xorg.conf, except just the bits (keyboard bit for a keyboard file). You need monitor sections in a monitor file. You don't need the 'Section & EndSection'

trainee 05-21-2011 04:05 AM

I tried created a file myxorg.conf and put it in /etc/X11/xorg.conf.d/

Code:

#  X configuration file

Section "ServerFlags"
    Option "DefaultServerLayout"    "Layout0"
EndSection

Section "ServerLayout"
    Identifier    "Layout0"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" 0 0
EndSection

Section "Device"
    Identifier    "Card0"
    Driver        "i810"
    VendorName    "Intel Corporation"
    BoardName      "GM45"
    BusID          "PCI:0:0:2"
    Screen          0
    Option        "Monitor-LVDS1" "Monitor0"
EndSection

Section "Screen"
    Identifier    "Screen0"
    Device        "Card0"
    Monitor        "Monitor0"
    SubSection "Display"
        Modes      "1366x768_48" "1024x768_48" "800x600_38" "800x600_35" "640x480_32"
    EndSubSection
EndSection

Section "Monitor"
    Identifier    "Monitor0"
    VendorName    "SEC"
    UseModes      "SEC_LVDS"
EndSection

Section "Modes"
    Identifier "SEC_LVDS"
    Modeline "1280x800"x60.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
    Modeline "1024x768"x60.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
    Modeline "800x600"x60.3  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
    Modeline "800x600"x56.2  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
    Modeline "640x480"x59.9  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
EndSection

and got the error
(ouptput of Xorg.0.log)
Code:

[  5045.730]
X.Org X Server 1.9.5
Release Date: 2011-03-17
[  5045.734] X Protocol Version 11, Revision 0
[  5045.735] Build Operating System: Slackware 13.37 Slackware Linux Project
[  5045.737] Current Operating System: Linux darkstar 2.6.37.6-smp #2 SMP Sat Apr 9 23:39:07 CDT 2011 i686
[  5045.738] Kernel command line: BOOT_IMAGE=Linux ro root=801 vt.default_utf8=0
[  5045.739] Build Date: 18 March 2011  12:08:03AM
[  5045.741] 
[  5045.742] Current version of pixman: 0.20.2
[  5045.744]        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[  5045.746] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  5045.751] (==) Log file: "/var/log/Xorg.0.log", Time: Sat May 21 04:45:44 2011
[  5045.753] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  5045.754] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  5045.756] Parse error on line 42 of section Modes in file /etc/X11/xorg.conf.d/myxorg.conf
        ModeLine dotclock expected
[  5045.759] (EE) Problem parsing the config file
[  5045.760] (EE) Error parsing the config file
[  5045.762]
Fatal server error:
[  5045.764] no screens found
[  5045.766]
Please consult the The X.Org Foundation support
        at http://wiki.x.org
 for help.
[  5045.771] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[  5045.772]

What should I fixed?

trainee 05-21-2011 04:06 AM

Normally, without the myxorg.conf, it would look like

Code:

[  5163.637]
X.Org X Server 1.9.5
Release Date: 2011-03-17
[  5163.640] X Protocol Version 11, Revision 0
[  5163.641] Build Operating System: Slackware 13.37 Slackware Linux Project
[  5163.642] Current Operating System: Linux darkstar 2.6.37.6-smp #2 SMP Sat Apr 9 23:39:07 CDT 2011 i686
[  5163.643] Kernel command line: BOOT_IMAGE=Linux ro root=801 vt.default_utf8=0
[  5163.644] Build Date: 18 March 2011  12:08:03AM
[  5163.645] 
[  5163.646] Current version of pixman: 0.20.2
[  5163.647]        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[  5163.650] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  5163.653] (==) Log file: "/var/log/Xorg.0.log", Time: Sat May 21 04:47:42 2011
[  5163.655] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  5163.656] (==) No Layout section.  Using the first Screen section.
[  5163.656] (==) No screen section available. Using defaults.
[  5163.656] (**) |-->Screen "Default Screen Section" (0)
[  5163.656] (**) |  |-->Monitor "<default monitor>"
[  5163.656] (==) No monitor specified for screen "Default Screen Section".
        Using a default monitor configuration.
[  5163.656] (==) Automatically adding devices
[  5163.656] (==) Automatically enabling devices
[  5163.657] (WW) The directory "/usr/share/fonts/local" does not exist.
[  5163.657]        Entry deleted from font path.
[  5163.657] (WW) The directory "/usr/share/fonts/CID" does not exist.
[  5163.657]        Entry deleted from font path.
[  5163.657] (==) FontPath set to:
        /usr/share/fonts/TTF,
        /usr/share/fonts/OTF,
        /usr/share/fonts/Type1,
        /usr/share/fonts/misc,
        /usr/share/fonts/75dpi/:unscaled,
        /usr/share/fonts/100dpi/:unscaled,
        /usr/share/fonts/75dpi,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/cyrillic
[  5163.657] (==) ModulePath set to "/usr/lib/xorg/modules"
[  5163.657] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[  5163.657] (II) Loader magic: 0x81f0f80
[  5163.657] (II) Module ABI versions:
[  5163.657]        X.Org ANSI C Emulation: 0.4
[  5163.657]        X.Org Video Driver: 8.0
[  5163.657]        X.Org XInput driver : 11.0
[  5163.657]        X.Org Server Extension : 4.0
[  5163.658] (--) PCI:*(0:0:2:0) 8086:2a42:1179:ff67 rev 7, Mem @ 0x90000000/4194304, 0x80000000/268435456, I/O @ 0x00004110/8
[  5163.658] (--) PCI: (0:0:2:1) 8086:2a43:1179:ff67 rev 7, Mem @ 0x92500000/1048576
[  5163.658] (II) Open ACPI successful (/var/run/acpid.socket)
[  5163.658] (II) LoadModule: "extmod"
[  5163.659] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[  5163.660] (II) Module extmod: vendor="X.Org Foundation"
[  5163.660]        compiled for 1.9.5, module version = 1.0.0
[  5163.660]        Module class: X.Org Server Extension
[  5163.660]        ABI class: X.Org Server Extension, version 4.0
[  5163.660] (II) Loading extension MIT-SCREEN-SAVER
[  5163.660] (II) Loading extension XFree86-VidModeExtension
[  5163.660] (II) Loading extension XFree86-DGA
[  5163.660] (II) Loading extension DPMS
[  5163.660] (II) Loading extension XVideo
[  5163.660] (II) Loading extension XVideo-MotionCompensation
[  5163.660] (II) Loading extension X-Resource
[  5163.660] (II) LoadModule: "dbe"
[  5163.661] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[  5163.661] (II) Module dbe: vendor="X.Org Foundation"
[  5163.661]        compiled for 1.9.5, module version = 1.0.0
[  5163.661]        Module class: X.Org Server Extension
[  5163.661]        ABI class: X.Org Server Extension, version 4.0
[  5163.661] (II) Loading extension DOUBLE-BUFFER
[  5163.661] (II) LoadModule: "glx"
[  5163.661] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  5163.661] (II) Module glx: vendor="X.Org Foundation"
[  5163.662]        compiled for 1.9.5, module version = 1.0.0
[  5163.662]        ABI class: X.Org Server Extension, version 4.0
[  5163.662] (==) AIGLX enabled
[  5163.662] (II) Loading extension GLX
[  5163.662] (II) LoadModule: "record"
[  5163.662] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[  5163.662] (II) Module record: vendor="X.Org Foundation"
[  5163.662]        compiled for 1.9.5, module version = 1.13.0
[  5163.662]        Module class: X.Org Server Extension
[  5163.662]        ABI class: X.Org Server Extension, version 4.0
[  5163.662] (II) Loading extension RECORD
[  5163.662] (II) LoadModule: "dri"
[  5163.663] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[  5163.663] (II) Module dri: vendor="X.Org Foundation"
[  5163.663]        compiled for 1.9.5, module version = 1.0.0
[  5163.663]        ABI class: X.Org Server Extension, version 4.0
[  5163.663] (II) Loading extension XFree86-DRI
[  5163.663] (II) LoadModule: "dri2"
[  5163.664] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[  5163.664] (II) Module dri2: vendor="X.Org Foundation"
[  5163.664]        compiled for 1.9.5, module version = 1.2.0
[  5163.664]        ABI class: X.Org Server Extension, version 4.0
[  5163.664] (II) Loading extension DRI2
[  5163.664] (==) Matched intel as autoconfigured driver 0
[  5163.664] (==) Matched vesa as autoconfigured driver 1
[  5163.664] (==) Matched fbdev as autoconfigured driver 2
[  5163.664] (==) Assigned the driver to the xf86ConfigLayout
[  5163.664] (II) LoadModule: "intel"
[  5163.665] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[  5163.665] (II) Module intel: vendor="X.Org Foundation"
[  5163.665]        compiled for 1.9.5, module version = 2.15.0
[  5163.665]        Module class: X.Org Video Driver
[  5163.665]        ABI class: X.Org Video Driver, version 8.0
[  5163.665] (II) LoadModule: "vesa"
[  5163.665] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[  5163.666] (II) Module vesa: vendor="X.Org Foundation"
[  5163.666]        compiled for 1.9.2, module version = 2.3.0
[  5163.666]        Module class: X.Org Video Driver
[  5163.666]        ABI class: X.Org Video Driver, version 8.0
[  5163.666] (II) LoadModule: "fbdev"
[  5163.667] (WW) Warning, couldn't open module fbdev
[  5163.667] (II) UnloadModule: "fbdev"
[  5163.667] (EE) Failed to load module "fbdev" (module does not exist, 0)
[  5163.668] (II) intel: Driver for Intel 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, B43, Clarkdale, Arrandale,
        Sandybridge, Sandybridge, Sandybridge, Sandybridge, Sandybridge,
        Sandybridge, Sandybridge
[  5163.669] (II) VESA: driver for VESA chipsets: vesa
[  5163.669] (--) using VT number 7

[  5163.675] (WW) Falling back to old probe method for vesa
[  5163.675] drmOpenDevice: node name is /dev/dri/card0
[  5163.675] drmOpenDevice: open result is 11, (OK)
[  5163.675] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[  5163.675] drmOpenDevice: node name is /dev/dri/card0
[  5163.675] drmOpenDevice: open result is 11, (OK)
[  5163.675] drmOpenByBusid: drmOpenMinor returns 11
[  5163.675] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[  5163.675] (II) intel(0): Creating default Display subsection in Screen section
        "Default Screen Section" for depth/fbbpp 24/32
[  5163.675] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[  5163.675] (==) intel(0): RGB weight 888
[  5163.675] (==) intel(0): Default visual is TrueColor
[  5163.675] (II) intel(0): Integrated Graphics Chipset: Intel(R) GM45
[  5163.675] (--) intel(0): Chipset: "GM45"
[  5163.675] (**) intel(0): Relaxed fencing disabled
[  5163.675] (**) intel(0): Framebuffer tiled
[  5163.675] (**) intel(0): Pixmaps tiled
[  5163.675] (**) intel(0): 3D buffers tiled
[  5163.675] (**) intel(0): SwapBuffers wait enabled
[  5163.676] (==) intel(0): video overlay key set to 0x101fe
[  5163.676] (II) intel(0): Output LVDS1 has no monitor section
[  5163.676] (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
[  5163.692] (II) intel(0): Output VGA1 has no monitor section
[  5163.693] (II) intel(0): Output DP1 has no monitor section
[  5163.752] (II) intel(0): Output TV1 has no monitor section
[  5163.752] (II) intel(0): EDID for output LVDS1
[  5163.752] (II) intel(0): Manufacturer: SEC  Model: 3741  Serial#: 0
[  5163.752] (II) intel(0): Year: 2007  Week: 0
[  5163.752] (II) intel(0): EDID Version: 1.3
[  5163.752] (II) intel(0): Digital Display Input
[  5163.752] (II) intel(0): Max Image Size [cm]: horiz.: 33  vert.: 21
[  5163.752] (II) intel(0): Gamma: 2.20
[  5163.752] (II) intel(0): No DPMS capabilities specified
[  5163.752] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[  5163.752] (II) intel(0): First detailed timing is preferred mode
[  5163.752] (II) intel(0): redX: 0.587 redY: 0.344  greenX: 0.320 greenY: 0.541
[  5163.752] (II) intel(0): blueX: 0.155 blueY: 0.130  whiteX: 0.313 whiteY: 0.329
[  5163.752] (II) intel(0): Manufacturer's mask: 0
[  5163.752] (II) intel(0): Supported detailed timing:
[  5163.752] (II) intel(0): clock: 68.9 MHz  Image Size:  331 x 207 mm
[  5163.752] (II) intel(0): h_active: 1280  h_sync: 1296  h_sync_end 1344 h_blank_end 1408 h_border: 0
[  5163.752] (II) intel(0): v_active: 800  v_sync: 801  v_sync_end 804 v_blanking: 816 v_border: 0
[  5163.752] (II) intel(0): Unknown vendor-specific block f
[  5163.752] (II) intel(0):  SAMSUNG
[  5163.752] (II) intel(0):  154AT07-T01
[  5163.752] (II) intel(0): EDID (in hex):
[  5163.752] (II) intel(0):        00ffffffffffff004ca3413700000000
[  5163.752] (II) intel(0):        00110103802115780a42d59658528a27
[  5163.752] (II) intel(0):        21505400000001010101010101010101
[  5163.752] (II) intel(0):        010101010101ee1a0080502010301030
[  5163.752] (II) intel(0):        13004bcf100000190000000f00000000
[  5163.752] (II) intel(0):        00000000002387026400000000fe0053
[  5163.752] (II) intel(0):        414d53554e470a2020202020000000fe
[  5163.752] (II) intel(0):        00313534415430372d5430310a200022
[  5163.752] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5163.752] (II) intel(0): Printing DDC gathered Modelines:
[  5163.752] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5163.753] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[  5163.753] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[  5163.753] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[  5163.753] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[  5163.753] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[  5163.753] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[  5163.753] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[  5163.753] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[  5163.753] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[  5163.753] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[  5163.753] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[  5163.753] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[  5163.753] (II) intel(0): Printing probed modes for output LVDS1
[  5163.753] (II) intel(0): Modeline "1280x800"x60.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5163.753] (II) intel(0): Modeline "1024x768"x60.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[  5163.753] (II) intel(0): Modeline "800x600"x60.3  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[  5163.753] (II) intel(0): Modeline "800x600"x56.2  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[  5163.753] (II) intel(0): Modeline "640x480"x59.9  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[  5163.769] (II) intel(0): EDID for output VGA1
[  5163.770] (II) intel(0): EDID for output DP1
[  5163.841] (II) intel(0): EDID for output TV1
[  5163.841] (II) intel(0): Printing probed modes for output TV1
[  5163.841] (II) intel(0): Modeline "848x480"x30.0  14.51  848 849 912 944  480 481 512 513 (15.4 kHz)
[  5163.841] (II) intel(0): Modeline "640x480"x30.0  11.31  640 641 704 736  480 481 512 513 (15.4 kHz)
[  5163.841] (II) intel(0): Modeline "1024x768"x30.0  26.89  1024 1025 1088 1120  768 769 800 801 (24.0 kHz)
[  5163.841] (II) intel(0): Modeline "800x600"x30.0  17.00  800 801 864 896  600 601 632 633 (19.0 kHz)
[  5163.841] (II) intel(0): Output LVDS1 connected
[  5163.841] (II) intel(0): Output VGA1 disconnected
[  5163.841] (II) intel(0): Output DP1 disconnected
[  5163.841] (II) intel(0): Output TV1 connected
[  5163.841] (II) intel(0): Using fuzzy aspect match for initial modes
[  5163.841] (II) intel(0): Output LVDS1 using initial mode 1024x768
[  5163.841] (II) intel(0): Output TV1 using initial mode 1024x768
[  5163.841] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[  5163.841] (II) intel(0): Kernel page flipping support detected, enabling
[  5163.841] (**) intel(0): Display dimensions: (330, 210) mm
[  5163.841] (**) intel(0): DPI set to (78, 92)
[  5163.841] (II) Loading sub module "fb"
[  5163.841] (II) LoadModule: "fb"
[  5163.842] (II) Loading /usr/lib/xorg/modules/libfb.so
[  5163.843] (II) Module fb: vendor="X.Org Foundation"
[  5163.843]        compiled for 1.9.5, module version = 1.0.0
[  5163.843]        ABI class: X.Org ANSI C Emulation, version 0.4
[  5163.843] (II) Loading sub module "dri2"
[  5163.843] (II) LoadModule: "dri2"
[  5163.844] (II) Reloading /usr/lib/xorg/modules/extensions/libdri2.so
[  5163.844] (II) UnloadModule: "vesa"
[  5163.844] (II) Unloading /usr/lib/xorg/modules/drivers/vesa_drv.so
[  5163.844] (==) Depth 24 pixmap format is 32 bpp
[  5163.845] (II) intel(0): [DRI2] Setup complete
[  5163.845] (II) intel(0): [DRI2]  DRI driver: i965
[  5163.845] (II) intel(0): Allocated new frame buffer 1024x768 stride 4096, tiled
[  5163.861] (II) UXA(0): Driver registered support for the following operations:
[  5163.861] (II)        solid
[  5163.861] (II)        copy
[  5163.861] (II)        composite (RENDER acceleration)
[  5163.861] (II)        put_image
[  5163.861] (II)        get_image
[  5163.861] (==) intel(0): Backing store disabled
[  5163.861] (==) intel(0): Silken mouse enabled
[  5163.861] (II) intel(0): Initializing HW Cursor
[  5164.120] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  5164.127] (==) intel(0): DPMS enabled
[  5164.127] (==) intel(0): Intel XvMC decoder enabled
[  5164.127] (II) intel(0): Set up textured video
[  5164.127] (II) intel(0): [XvMC] xvmc_vld driver initialized.
[  5164.127] (II) intel(0): direct rendering: DRI2 Enabled
[  5164.127] (==) intel(0): hotplug detection: "enabled"
[  5164.127] (--) RandR disabled
[  5164.127] (II) Initializing built-in extension Generic Event Extension
[  5164.128] (II) Initializing built-in extension SHAPE
[  5164.128] (II) Initializing built-in extension MIT-SHM
[  5164.128] (II) Initializing built-in extension XInputExtension
[  5164.128] (II) Initializing built-in extension XTEST
[  5164.128] (II) Initializing built-in extension BIG-REQUESTS
[  5164.128] (II) Initializing built-in extension SYNC
[  5164.128] (II) Initializing built-in extension XKEYBOARD
[  5164.128] (II) Initializing built-in extension XC-MISC
[  5164.128] (II) Initializing built-in extension XINERAMA
[  5164.128] (II) Initializing built-in extension XFIXES
[  5164.128] (II) Initializing built-in extension RENDER
[  5164.128] (II) Initializing built-in extension RANDR
[  5164.128] (II) Initializing built-in extension COMPOSITE
[  5164.128] (II) Initializing built-in extension DAMAGE
[  5164.143] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  5164.144] (II) AIGLX: enabled GLX_INTEL_swap_event
[  5164.144] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[  5164.144] (II) AIGLX: enabled GLX_SGI_make_current_read
[  5164.144] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[  5164.144] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i965_dri.so
[  5164.144] (II) GLX: Initialized DRI2 GL provider for screen 0
[  5164.144] (II) intel(0): Setting screen physical size to 270 x 203
[  5164.295] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[  5164.295] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  5164.295] (**) Power Button: Applying InputClass "keyboard-all"
[  5164.295] (II) LoadModule: "evdev"
[  5164.295] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  5164.296] (II) Module evdev: vendor="X.Org Foundation"
[  5164.296]        compiled for 1.9.3, module version = 2.6.0
[  5164.296]        Module class: X.Org XInput Driver
[  5164.296]        ABI class: X.Org XInput driver, version 11.0
[  5164.296] (**) Power Button: always reports core events
[  5164.296] (**) Power Button: Device: "/dev/input/event4"
[  5164.304] (--) Power Button: Found keys
[  5164.304] (II) Power Button: Configuring as keyboard
[  5164.304] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[  5164.304] (**) Option "xkb_rules" "evdev"
[  5164.304] (**) Option "xkb_model" "evdev"
[  5164.304] (**) Option "xkb_layout" "us"
[  5164.304] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  5164.345] (II) config/udev: Adding input device Video Bus (/dev/input/event8)
[  5164.345] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  5164.345] (**) Video Bus: Applying InputClass "keyboard-all"
[  5164.345] (**) Video Bus: always reports core events
[  5164.345] (**) Video Bus: Device: "/dev/input/event8"
[  5164.347] (--) Video Bus: Found keys
[  5164.347] (II) Video Bus: Configuring as keyboard
[  5164.347] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
[  5164.347] (**) Option "xkb_rules" "evdev"
[  5164.347] (**) Option "xkb_model" "evdev"
[  5164.347] (**) Option "xkb_layout" "us"
[  5164.347] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  5164.350] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[  5164.351] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  5164.351] (**) Power Button: Applying InputClass "keyboard-all"
[  5164.351] (**) Power Button: always reports core events
[  5164.351] (**) Power Button: Device: "/dev/input/event2"
[  5164.353] (--) Power Button: Found keys
[  5164.353] (II) Power Button: Configuring as keyboard
[  5164.353] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[  5164.353] (**) Option "xkb_rules" "evdev"
[  5164.353] (**) Option "xkb_model" "evdev"
[  5164.353] (**) Option "xkb_layout" "us"
[  5164.353] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  5164.354] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
[  5164.354] (II) No input driver/identifier specified (ignoring)
[  5164.361] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event7)
[  5164.361] (II) No input driver/identifier specified (ignoring)
[  5164.363] (II) config/udev: Adding input device Microsoft Microsoft Wireless Optical Mouse® 1.00 (/dev/input/event5)
[  5164.363] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: Applying InputClass "evdev pointer catchall"
[  5164.364] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: always reports core events
[  5164.364] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: Device: "/dev/input/event5"
[  5164.373] (--) Microsoft Microsoft Wireless Optical Mouse® 1.00: Found 9 mouse buttons
[  5164.373] (--) Microsoft Microsoft Wireless Optical Mouse® 1.00: Found scroll wheel(s)
[  5164.373] (--) Microsoft Microsoft Wireless Optical Mouse® 1.00: Found relative axes
[  5164.373] (--) Microsoft Microsoft Wireless Optical Mouse® 1.00: Found x and y relative axes
[  5164.373] (II) Microsoft Microsoft Wireless Optical Mouse® 1.00: Configuring as mouse
[  5164.373] (II) Microsoft Microsoft Wireless Optical Mouse® 1.00: Adding scrollwheel support
[  5164.373] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: YAxisMapping: buttons 4 and 5
[  5164.373] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  5164.373] (II) XINPUT: Adding extended input device "Microsoft Microsoft Wireless Optical Mouse® 1.00" (type: MOUSE)
[  5164.373] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: (accel) keeping acceleration scheme 1
[  5164.373] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: (accel) acceleration profile 0
[  5164.373] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: (accel) acceleration factor: 2.000
[  5164.373] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: (accel) acceleration threshold: 4
[  5164.373] (II) Microsoft Microsoft Wireless Optical Mouse® 1.00: initialized for relative axes.
[  5164.374] (II) config/udev: Adding input device Microsoft Microsoft Wireless Optical Mouse® 1.00 (/dev/input/mouse0)
[  5164.374] (II) No input driver/identifier specified (ignoring)
[  5164.383] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event1)
[  5164.383] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[  5164.383] (**) AT Translated Set 2 keyboard: Applying InputClass "keyboard-all"
[  5164.383] (**) AT Translated Set 2 keyboard: always reports core events
[  5164.383] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
[  5164.389] (--) AT Translated Set 2 keyboard: Found keys
[  5164.389] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[  5164.389] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[  5164.389] (**) Option "xkb_rules" "evdev"
[  5164.389] (**) Option "xkb_model" "evdev"
[  5164.389] (**) Option "xkb_layout" "us"
[  5164.389] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  5164.390] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[  5164.390] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[  5164.390] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad"
[  5164.390] (II) LoadModule: "synaptics"
[  5164.390] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[  5164.390] (II) Module synaptics: vendor="X.Org Foundation"
[  5164.390]        compiled for 1.9.4, module version = 1.4.0
[  5164.390]        Module class: X.Org XInput Driver
[  5164.390]        ABI class: X.Org XInput driver, version 11.0
[  5164.390] (**) Option "Device" "/dev/input/event6"
[  5164.429] (--) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5866
[  5164.429] (--) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 5756
[  5164.429] (--) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[  5164.429] (--) SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[  5164.429] (--) SynPS/2 Synaptics TouchPad: buttons: left right scroll-buttons
[  5164.429] (**) Option "TapButton1" "1"
[  5164.429] (**) Option "TapButton2" "2"
[  5164.429] (**) Option "TapButton3" "3"
[  5164.461] (--) SynPS/2 Synaptics TouchPad: touchpad found
[  5164.461] (**) SynPS/2 Synaptics TouchPad: always reports core events
[  5164.477] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
[  5164.477] (**) SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[  5164.477] (**) SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
[  5164.477] (**) SynPS/2 Synaptics TouchPad: AccelFactor is now 0.032
[  5164.477] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[  5164.477] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[  5164.477] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[  5164.477] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[  5164.501] (--) SynPS/2 Synaptics TouchPad: touchpad found
[  5164.501] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
[  5164.501] (II) No input driver/identifier specified (ignoring)
[  5164.507] (II) config/udev: Adding input device Speakup (/dev/input/event0)
[  5164.507] (**) Speakup: Applying InputClass "evdev keyboard catchall"
[  5164.507] (**) Speakup: Applying InputClass "keyboard-all"
[  5164.507] (**) Speakup: always reports core events
[  5164.508] (**) Speakup: Device: "/dev/input/event0"
[  5164.513] (--) Speakup: Found keys
[  5164.513] (II) Speakup: Configuring as keyboard
[  5164.513] (II) XINPUT: Adding extended input device "Speakup" (type: KEYBOARD)
[  5164.513] (**) Option "xkb_rules" "evdev"
[  5164.513] (**) Option "xkb_model" "evdev"
[  5164.513] (**) Option "xkb_layout" "us"
[  5164.513] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  5174.002] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5174.002] (II) intel(0): Printing DDC gathered Modelines:
[  5174.002] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5174.053] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5174.053] (II) intel(0): Printing DDC gathered Modelines:
[  5174.053] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5174.311] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5174.311] (II) intel(0): Printing DDC gathered Modelines:
[  5174.311] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5174.396] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5174.396] (II) intel(0): Printing DDC gathered Modelines:
[  5174.396] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5174.432] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5174.432] (II) intel(0): Printing DDC gathered Modelines:
[  5174.432] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5174.537] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5174.537] (II) intel(0): Printing DDC gathered Modelines:
[  5174.537] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5175.385] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5175.386] (II) intel(0): Printing DDC gathered Modelines:
[  5175.386] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5187.269] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5187.269] (II) intel(0): Printing DDC gathered Modelines:
[  5187.269] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5191.500] (II) intel(0): Allocated new frame buffer 1280x800 stride 5120, tiled
[  5191.512] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5191.512] (II) intel(0): Printing DDC gathered Modelines:
[  5191.512] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5191.869] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5191.869] (II) intel(0): Printing DDC gathered Modelines:
[  5191.869] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5192.120] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5192.120] (II) intel(0): Printing DDC gathered Modelines:
[  5192.120] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5192.502] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5192.502] (II) intel(0): Printing DDC gathered Modelines:
[  5192.502] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)
[  5192.554] (II) intel(0): EDID vendor "SEC", prod id 14145
[  5192.554] (II) intel(0): Printing DDC gathered Modelines:
[  5192.554] (II) intel(0): Modeline "1280x800"x0.0  68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz)


trainee 05-21-2011 04:42 AM

I found out the error I had in the myxorg.conf. Now the file looks like

Code:

#  X configuration file

Section "ServerFlags"
    Option "DefaultServerLayout"    "Layout0"
EndSection

Section "ServerLayout"
    Identifier    "Layout0"
    Screen      0  "Screen0" 0 0
EndSection

Section "Device"
    Identifier    "Card0"
    Driver        "i810"
    VendorName    "Intel Corporation"
    BoardName      "GM45"
    BusID          "PCI:0:0:2"
    Screen          0
    Option        "Monitor-LVDS1" "Monitor0"
EndSection

Section "Screen"
    Identifier    "Screen0"
    Device        "Card0"
    Monitor        "Monitor0"
    SubSection "Display"
        Modes      "1366x768_48" "1024x768_48" "800x600_38" "800x600_35" "640x480_32"
    EndSubSection
EndSection

Section "Monitor"
    Identifier    "Monitor0"
    VendorName    "SEC"
    UseModes      "SEC_LVDS"
EndSection

Section "Modes"
    Identifier "SEC_LVDS"
    Modeline "1280x800" 60.00  68.94  1280 1296 1344 1408  800 801 804  -hsync -vsync #(49.0 kHz)
    Modeline "1024x768" 60.00  65.00  1024 1048 1184 1344  768 771 777  -hsync -vsync #(48.4 kHz)
    Modeline "800x600" 60.30  40.00  800 840 968 1056  600 601 605  +hsync +vsync #(37.9 kHz)
    Modeline "800x600" 56.20  36.00  800 824 896 1024  600 601 603  +hsync +vsync #(35.2 kHz)
    Modeline "640x480" 59.90  25.18  640 656 752 800  480 490 492  -hsync -vsync #(31.5 kHz)
EndSection

and the Xorg.0.log looks like
Code:

[  177.293]
X.Org X Server 1.9.5
Release Date: 2011-03-17
[  177.297] X Protocol Version 11, Revision 0
[  177.298] Build Operating System: Slackware 13.37 Slackware Linux Project
[  177.299] Current Operating System: Linux darkstar 2.6.37.6-smp #2 SMP Sat Apr 9 23:39:07 CDT 2011 i686
[  177.301] Kernel command line: BOOT_IMAGE=Linux ro root=801 vt.default_utf8=0
[  177.302] Build Date: 18 March 2011  12:08:03AM
[  177.303] 
[  177.305] Current version of pixman: 0.20.2
[  177.306]        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[  177.309] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  177.314] (==) Log file: "/var/log/Xorg.0.log", Time: Sat May 21 05:36:06 2011
[  177.315] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  177.317] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  177.318] (**) Option "defaultserverlayout" "Layout0"
[  177.318] (**) ServerLayout "Layout0"
[  177.318] (**) |-->Screen "Screen0" (0)
[  177.318] (**) |  |-->Monitor "Monitor0"
[  177.318] (**) |  |-->Device "Card0"
[  177.319] (==) Automatically adding devices
[  177.319] (==) Automatically enabling devices
[  177.319] (WW) The directory "/usr/share/fonts/local" does not exist.
[  177.319]        Entry deleted from font path.
[  177.319] (WW) The directory "/usr/share/fonts/CID" does not exist.
[  177.319]        Entry deleted from font path.
[  177.373] (==) FontPath set to:
        /usr/share/fonts/TTF,
        /usr/share/fonts/OTF,
        /usr/share/fonts/Type1,
        /usr/share/fonts/misc,
        /usr/share/fonts/75dpi/:unscaled,
        /usr/share/fonts/100dpi/:unscaled,
        /usr/share/fonts/75dpi,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/cyrillic
[  177.373] (==) ModulePath set to "/usr/lib/xorg/modules"
[  177.373] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[  177.373] (II) Loader magic: 0x81f0f80
[  177.373] (II) Module ABI versions:
[  177.373]        X.Org ANSI C Emulation: 0.4
[  177.373]        X.Org Video Driver: 8.0
[  177.373]        X.Org XInput driver : 11.0
[  177.373]        X.Org Server Extension : 4.0
[  177.374] (--) PCI:*(0:0:2:0) 8086:2a42:1179:ff67 rev 7, Mem @ 0x90000000/4194304, 0x80000000/268435456, I/O @ 0x00004110/8
[  177.374] (--) PCI: (0:0:2:1) 8086:2a43:1179:ff67 rev 7, Mem @ 0x92500000/1048576
[  177.375] (II) Open ACPI successful (/var/run/acpid.socket)
[  177.375] (II) LoadModule: "extmod"
[  177.388] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[  177.402] (II) Module extmod: vendor="X.Org Foundation"
[  177.402]        compiled for 1.9.5, module version = 1.0.0
[  177.402]        Module class: X.Org Server Extension
[  177.402]        ABI class: X.Org Server Extension, version 4.0
[  177.402] (II) Loading extension MIT-SCREEN-SAVER
[  177.402] (II) Loading extension XFree86-VidModeExtension
[  177.402] (II) Loading extension XFree86-DGA
[  177.402] (II) Loading extension DPMS
[  177.402] (II) Loading extension XVideo
[  177.402] (II) Loading extension XVideo-MotionCompensation
[  177.402] (II) Loading extension X-Resource
[  177.402] (II) LoadModule: "dbe"
[  177.402] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[  177.403] (II) Module dbe: vendor="X.Org Foundation"
[  177.403]        compiled for 1.9.5, module version = 1.0.0
[  177.403]        Module class: X.Org Server Extension
[  177.403]        ABI class: X.Org Server Extension, version 4.0
[  177.403] (II) Loading extension DOUBLE-BUFFER
[  177.403] (II) LoadModule: "glx"
[  177.404] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  177.423] (II) Module glx: vendor="X.Org Foundation"
[  177.423]        compiled for 1.9.5, module version = 1.0.0
[  177.423]        ABI class: X.Org Server Extension, version 4.0
[  177.424] (==) AIGLX enabled
[  177.424] (II) Loading extension GLX
[  177.424] (II) LoadModule: "record"
[  177.424] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[  177.425] (II) Module record: vendor="X.Org Foundation"
[  177.425]        compiled for 1.9.5, module version = 1.13.0
[  177.425]        Module class: X.Org Server Extension
[  177.425]        ABI class: X.Org Server Extension, version 4.0
[  177.425] (II) Loading extension RECORD
[  177.425] (II) LoadModule: "dri"
[  177.426] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[  177.436] (II) Module dri: vendor="X.Org Foundation"
[  177.436]        compiled for 1.9.5, module version = 1.0.0
[  177.436]        ABI class: X.Org Server Extension, version 4.0
[  177.436] (II) Loading extension XFree86-DRI
[  177.436] (II) LoadModule: "dri2"
[  177.437] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[  177.437] (II) Module dri2: vendor="X.Org Foundation"
[  177.437]        compiled for 1.9.5, module version = 1.2.0
[  177.437]        ABI class: X.Org Server Extension, version 4.0
[  177.437] (II) Loading extension DRI2
[  177.437] (II) LoadModule: "i810"
[  177.454] (WW) Warning, couldn't open module i810
[  177.454] (II) UnloadModule: "i810"
[  177.454] (EE) Failed to load module "i810" (module does not exist, 0)
[  177.456] (EE) No drivers available.
[  177.458]
Fatal server error:
[  177.462] no screens found
[  177.464]
Please consult the The X.Org Foundation support
        at http://wiki.x.org
 for help.
[  177.469] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[  177.470]


business_kid 05-22-2011 03:08 AM

Remove this line:
Quote:

Modes "1366x768_48" "1024x768_48" "800x600_38" "800x600_35" "640x480_32"
and all the modelines there. From memory, a modeline has
name h-freq dotclock right-visible etc.

The dotclock is the speed it is placing out the dots at.

trainee 05-22-2011 03:53 AM

I did as you showed. I still get the error like it the last time. For some reason, the driver "i810" cannot be loaded even though the chipset I have is GM45.

business_kid 05-23-2011 04:22 AM

Quote:

Originally Posted by trainee (Post 4363484)
I did as you showed. I still get the error like it the last time. For some reason, the driver "i810" cannot be loaded even though the chipset I have is GM45.

I did a quick search +i810 +gm45. I came across this
Code:

i915.modeset=1 worked for me like a charm. My hardware details are:
Apparently it's a kernel module problem. i915.modeset=1 would be a boot parameter. You could also try zero (i.e. i915.modeset=0)

trainee 05-24-2011 03:48 AM

Tried adding "append"i915.modeset=1" into lilo.conf

(I showed here the parts of lilo.conf that I changed)
Code:

#vga = normal

# Linux bootable partition config begins
image = /boot/vmlinuz
append="i915.modeset=1"
  initrd= /boot/initrd.gz
  root = /dev/sda1
  label = Slack-init
  read-only
# Linux bootable partition config ends

Copied back the configuration file back into /etc/X11/xorg.conf.d/, startx, and here is the log file
Code:

[    54.308]
X.Org X Server 1.9.5
Release Date: 2011-03-17
[    54.308] X Protocol Version 11, Revision 0
[    54.308] Build Operating System: Slackware 13.37 Slackware Linux Project
[    54.308] Current Operating System: Linux darkstar 2.6.37.6-smp #2 SMP Sat Apr 9 23:39:07 CDT 2011 i686
[    54.308] Kernel command line: BOOT_IMAGE=Slack-init ro root=801 i915.modeset=1
[    54.308] Build Date: 18 March 2011  12:08:03AM
[    54.308] 
[    54.318] Current version of pixman: 0.20.2
[    54.318]        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[    54.318] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    54.319] (==) Log file: "/var/log/Xorg.0.log", Time: Tue May 24 04:33:43 2011
[    54.352] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    54.352] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    54.399] (**) Option "defaultserverlayout" "Layout0"
[    54.399] (**) ServerLayout "Layout0"
[    54.399] (**) |-->Screen "Screen0" (0)
[    54.399] (**) |  |-->Monitor "Monitor0"
[    54.400] (**) |  |-->Device "Card0"
[    54.400] (==) Automatically adding devices
[    54.400] (==) Automatically enabling devices
[    54.416] (WW) The directory "/usr/share/fonts/local" does not exist.
[    54.416]        Entry deleted from font path.
[    54.417] (WW) The directory "/usr/share/fonts/CID" does not exist.
[    54.417]        Entry deleted from font path.
[    54.459] (==) FontPath set to:
        /usr/share/fonts/TTF,
        /usr/share/fonts/OTF,
        /usr/share/fonts/Type1,
        /usr/share/fonts/misc,
        /usr/share/fonts/75dpi/:unscaled,
        /usr/share/fonts/100dpi/:unscaled,
        /usr/share/fonts/75dpi,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/cyrillic
[    54.459] (==) ModulePath set to "/usr/lib/xorg/modules"
[    54.459] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[    54.459] (II) Loader magic: 0x81f0f80
[    54.460] (II) Module ABI versions:
[    54.460]        X.Org ANSI C Emulation: 0.4
[    54.460]        X.Org Video Driver: 8.0
[    54.460]        X.Org XInput driver : 11.0
[    54.460]        X.Org Server Extension : 4.0
[    54.461] (--) PCI:*(0:0:2:0) 8086:2a42:1179:ff67 rev 7, Mem @ 0x90000000/4194304, 0x80000000/268435456, I/O @ 0x00004110/8
[    54.461] (--) PCI: (0:0:2:1) 8086:2a43:1179:ff67 rev 7, Mem @ 0x92500000/1048576
[    54.461] (II) Open ACPI successful (/var/run/acpid.socket)
[    54.461] (II) LoadModule: "extmod"
[    54.475] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    54.488] (II) Module extmod: vendor="X.Org Foundation"
[    54.488]        compiled for 1.9.5, module version = 1.0.0
[    54.488]        Module class: X.Org Server Extension
[    54.488]        ABI class: X.Org Server Extension, version 4.0
[    54.488] (II) Loading extension MIT-SCREEN-SAVER
[    54.488] (II) Loading extension XFree86-VidModeExtension
[    54.488] (II) Loading extension XFree86-DGA
[    54.488] (II) Loading extension DPMS
[    54.488] (II) Loading extension XVideo
[    54.488] (II) Loading extension XVideo-MotionCompensation
[    54.488] (II) Loading extension X-Resource
[    54.488] (II) LoadModule: "dbe"
[    54.489] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    54.490] (II) Module dbe: vendor="X.Org Foundation"
[    54.490]        compiled for 1.9.5, module version = 1.0.0
[    54.490]        Module class: X.Org Server Extension
[    54.490]        ABI class: X.Org Server Extension, version 4.0
[    54.490] (II) Loading extension DOUBLE-BUFFER
[    54.490] (II) LoadModule: "glx"
[    54.491] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    54.509] (II) Module glx: vendor="X.Org Foundation"
[    54.509]        compiled for 1.9.5, module version = 1.0.0
[    54.509]        ABI class: X.Org Server Extension, version 4.0
[    54.510] (==) AIGLX enabled
[    54.510] (II) Loading extension GLX
[    54.510] (II) LoadModule: "record"
[    54.511] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    54.512] (II) Module record: vendor="X.Org Foundation"
[    54.512]        compiled for 1.9.5, module version = 1.13.0
[    54.512]        Module class: X.Org Server Extension
[    54.512]        ABI class: X.Org Server Extension, version 4.0
[    54.512] (II) Loading extension RECORD
[    54.512] (II) LoadModule: "dri"
[    54.513] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    54.522] (II) Module dri: vendor="X.Org Foundation"
[    54.522]        compiled for 1.9.5, module version = 1.0.0
[    54.522]        ABI class: X.Org Server Extension, version 4.0
[    54.522] (II) Loading extension XFree86-DRI
[    54.522] (II) LoadModule: "dri2"
[    54.523] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    54.524] (II) Module dri2: vendor="X.Org Foundation"
[    54.524]        compiled for 1.9.5, module version = 1.2.0
[    54.524]        ABI class: X.Org Server Extension, version 4.0
[    54.524] (II) Loading extension DRI2
[    54.524] (II) LoadModule: "i810"
[    54.540] (WW) Warning, couldn't open module i810
[    54.540] (II) UnloadModule: "i810"
[    54.540] (EE) Failed to load module "i810" (module does not exist, 0)
[    54.540] (EE) No drivers available.
[    54.540]
Fatal server error:
[    54.540] no screens found
[    54.540]
Please consult the The X.Org Foundation support
        at http://wiki.x.org
 for help.
[    54.540] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[    54.540]

I believed I have 2 problems here:
1) When I startx, sometimes, the X server think that I have 2 monitors out put, one is LVDS1 and the other is TV1.
2) X11 keep using the VESA driver for my video card and refused - unable- to use the intel driver for my card.

May be these two problems are related (they are confused by 2) and lead to 1) ). Can you give me any suggestion? Thanks for being with me this far.


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