Finally, I enabled my laptop's external monitor (with Intel 855GME integrated graphic card), thanks to Jim Farrand's excellent info. The web addresses are (WOW, I have to write 5 posts to use URL on this forum. This is my first post. I can't use it.)
Quote:
xyxyx.org/laptop-sony-vgn-t1xp/files/xorg.conf
xyxyx.org/laptop-sony-vgn-t1xp
|
Due to Intel's video bios problem (for dual head configurations), I should keep "CRT,LFP" for my external LCD and internal LCD.
"LFP,LFP" is not working.
"CRT" means the external monitor including LCDs.
"LCD" stands for the internal LCD of the laptop.
The key points are in the "Device" sections.
The lines in red are crucial.
Code:
Section "Device"
Identifier "Videocard0"
Driver "i810"
BusID "PCI:0:2:0"
Option "MonitorLayout" "CRT,LFP" #this is the important option
Option "VBERestore" "false"
Option "DevicePresence" "false"
Option "DisplayInfo" "false"
Screen 0
EndSection
Section "Device"
Identifier "Videocard1"
Driver "i810"
BusID "PCI:0:2:0"
Option "VBERestore" "false"
Option "DevicePresence" "false"
Screen 1
EndSection
The following is my xorg.conf.
Code:
Section "ServerLayout"
Identifier "Multihead layout"
Screen 0 "Screen0" 0 0
Screen 1 "Screen1" LeftOf "Screen0"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Synaptics" "AlwaysCore"
EndSection
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "unix/:7100"
EndSection
Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Load "type1"
Load "synaptics"
Load "dri"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes"
EndSection
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Notebook"
ModelName "LCD"
HorizSync 31 - 64
VertRefresh 60 - 60
Option "DPMS"
EndSection
Section "Monitor"
Identifier "Monitor1"
VendorName "External"
ModelName "LCD"
HorizSync 31 - 64
VertRefresh 60 - 60
Option "DPMS"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "i810"
BusID "PCI:0:2:0"
Option "MonitorLayout" "CRT,LFP" #this is the important option
Option "VBERestore" "false"
Option "DevicePresence" "false"
Option "DisplayInfo" "false"
Screen 0
EndSection
Section "Device"
Identifier "Videocard1"
Driver "i810"
BusID "PCI:0:2:0"
Option "VBERestore" "false"
Option "DevicePresence" "false"
Screen 1
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
#Viewport 0 0
Depth 16
Modes "1024x768"
EndSubSection
SubSection "Display"
#Viewport 0 0
Depth 24
Modes "1024x768"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Videocard1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
#Viewport 0 0
Depth 16
Modes "1024x768"
EndSubSection
SubSection "Display"
#Viewport 0 0
Depth 24
Modes "1024x768"
EndSubSection
EndSection
Section "dri"
Mode 0666
EndSection