IBM ThinkPad R51 Dual monitor Debian linuxon
Tegnap sikerült végre megoldani, hogy használni tudjam 2 monitorral a fenti típusú notebookot. A géphez egy 15" Samsung LCD monitor van hozzácsatolva. A dolog Xinerama segítségével valósul meg. Tökéletesen, nagyon jól használható. Az LCD jobbra található a géphez viszonyítva (RightOf opció a ServerLayout sectionben). Így jobb nekem. Alant található xorg.conf plusz egy kis egér konfiguráció is.
Az egér egy Microsoft Intellimouse Optical 1.1A, melyen minden gomb úgy mûködik, ahogy kell. .imwheelrc file:
".*"
None,Down,Alt_L|Left
None,Up,Alt_L|Right
A gombokat beállító init script (nem tudom, miért kell kétszer futtatni az xmodmapet, de csak így mûködik..):
#!/bin/bash
killall imwheel;
xmodmap -e "pointer = 1 2 3 6 7 4 5";
BINARY=$(which imwheel);
$BINARY -k -p -b "6 7";
killall imwheel;
xmodmap -e "pointer = 1 2 3 6 7 8 9";
BINARY=$(which imwheel);
$BINARY -k -p -b "9 8";exit 0;
Az xorg.conf fájlom:
Section "Files"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/X11R6/lib/X11/fonts/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/X11R6/lib/X11/fonts/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/X11R6/lib/X11/fonts/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi"
# path to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSectionSection "Module"
Load "bitmap"
Load "dbe"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "record"
Load "type1"
Load "vbe"
EndSectionSection "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "hu"
EndSectionSection "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ExplorerPS/2"
Option "Buttons" "7"
Option "ZAxisMapping" "6 7"
EndSectionSection "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"
EndSectionSection "Device"
Identifier "Laptop"
Driver "i810"
BusId "PCI:0:2:0"
Screen 0
Option "MonitorLayout" "CRT,LFP"
# Option "MonitorLayout" "CRT,CRT+LFP"
# Option "UseFBDev" "true"
EndSectionSection "Device"
Identifier "External"
Driver "i810"
BusId "PCI:0:2:0"
Screen 1
Option "MonitorLayout" "CRT,LFP"
Option "DevicePresence" "yes"
# Option "UseFBDev" "true"
EndSectionSection "Monitor"
Identifier "Main Monitor"
Option "DPMS"
HorizSync 28-49
VertRefresh 43-72
EndSectionSection "Monitor"
Identifier "Second Monitor"
Option "DPMS"
HorizSync 28-49
VertRefresh 43-72
EndSectionSection "Screen"
Identifier "Main Screen"
Device "Laptop"
Monitor "Main Monitor"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSectionSection "Screen"
Identifier "Second Screen"
Device "External"
Monitor "Second Monitor"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSectionSection "ServerLayout"
Identifier "Default Layout"
Screen 0 "Main Screen" 0 0
Screen 1 "Second Screen" RightOf "Main Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Touchpad"
Option "Xinerama" "true"
EndSectionSection "DRI"
Mode 0666
EndSection
Hozzászóláshoz a Disqus szolgáltatását használom, korábbi vélemények elovlasásához és új hozzászólás írásához engedélyezd a Disqus-tól származó JavaScripteteket.