Archivo de la categoría: xorg.conf

>Dos Monitores Linux

>
Ya tienes algo de tiempo que he estado trabajado con el X de Linux para hacer lo que se llama “Multihead” que no es otra cosa mas que hacer que funcionen dos monitores en una misma computadora, y quiza los que usen laptop con windows o los que usen OS X, diran eso que tiene de rearo solo con un par de teclas y listo, pero el chiste esta en entender como funciona y lo mejor hacer que funcione en Linux, asi es que me di a la tarea de buscar algo, y encontre a Xinerama, y comense a trabajar en el la verda es que el concepto no es nada complicado simplemente se confuguran ambos dispositivos y listo, por otra parte continuas con el layout y todo podria funcionar bien, pero…..

aqui estan los peros que se deben tomar en cuenta.

IMPORTANTE: DEBES TOMAR EN CUENTA QUE LA MEJOR FORMA DE CONFIGURARLO ES CON LOS VALORES QUE TIENEN TU MONITOR, ES DECIR NECESITAS EL HSYNC y VREFRESH DE LOS MONITORES, PORQUE SI NO LOS PONES NUNCA TENDRAS LA MEJOR RESOLUCION DE TU MONITOR.

AQUI les dejo lo mas importante del xorg.conf

Section “Files”
FontPath “/usr/share/X11/fonts/misc”
FontPath “/usr/share/X11/fonts/cyrillic”
FontPath “/usr/share/X11/fonts/100dpi/:unscaled”
FontPath “/usr/share/X11/fonts/75dpi/:unscaled”
FontPath “/usr/share/X11/fonts/Type1″
FontPath “/usr/share/X11/fonts/100dpi”
FontPath “/usr/share/X11/fonts/75dpi”
FontPath “/usr/share/fonts/X11/misc”
# path to defoma fonts
FontPath “/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType”
EndSection

Section “Module”
Load “bitmap”
Load “dbe”
Load “ddc”
Load “dri”
Load “extmod”
Load “freetype”
Load “glx”
Load “int10″
Load “type1″
Load “vbe”
EndSection

Section “InputDevice”
Identifier “Generic Keyboard”
Driver “kbd”
Option “CoreKeyboard”
Option “XkbRules” “xorg”
Option “XkbModel” “pc105″
Option “XkbLayout” “es”
Option “XkbVariant” “,”
Option “XkbOptions” “grp:alt_shift_toggle,lv3:ralt_switch,grp_led:scroll”
EndSection

Section “InputDevice”
Identifier “Configured Mouse”
Driver “mouse”
Option “CorePointer”
Option “Device” “/dev/input/mice”
Option “Protocol” “ExplorerPS/2″
Option “ZAxisMapping” “4 5″
Option “Emulate3Buttons” “true”
EndSection

Section “InputDevice”
Identifier “Synaptics Touchpad”
Driver “synaptics”
Option “SendCoreEvents” “true”
Option “Device” “/dev/psaux”
Option “Protocol” “auto-dev”
Option “HorizScrollDelta” “0″
EndSection

Section “InputDevice”
Driver “wacom”
Identifier “stylus”
Option “Device” “/dev/wacom” # Change to
# /dev/input/event
# for USB
Option “Type” “stylus”
Option “ForceDevice” “ISDV4″ # Tablet PC ONLY
EndSection

Section “InputDevice”
Driver “wacom”
Identifier “eraser”
Option “Device” “/dev/wacom” # Change to
# /dev/input/event
# for USB
Option “Type” “eraser”
Option “ForceDevice” “ISDV4″ # Tablet PC ONLY
EndSection

Section “InputDevice”
Driver “wacom”
Identifier “cursor”
Option “Device” “/dev/wacom” # Change to
# /dev/input/event
# for USB
Option “Type” “cursor”
Option “ForceDevice” “ISDV4″ # Tablet PC ONLY
EndSection

Section “Device”
Identifier “ATI Technologies, Inc. Radeon 330M/340M/350M (RS200 IGP)”
Driver “radeon”
BusID “PCI:1:5:0″
Option “MergedFB” “true”
Option “CRT2Position” “LeftOf” # position
Option “AGPMode” “4″
Option “MonitorLayout” “LVDS,CRT”
Option “CRT2Position” “LeftOf”
Option “CRT2HSync” “30-90″
Option “CRT2VRefresh” “50-75″
Option “Metamodes” “1024×768-1024×768″
Screen 0
EndSection

Section “Device”
Identifier “ATI2″
Driver “radeon”
#BusID “PCI:1:5:0″
Screen 1
EndSection
Section “Monitor”
Identifier “Generic Monitor”
Option “DPMS”
#HorizSync 50
#VertRefresh 40
EndSection

Section “Monitor”
Identifier “Generic Monitor2″
Option “DPMS”
#HorizSync 31.5 – 81.1
#VertRefresh 56.0 – 75
EndSection

Section “Screen”
Identifier “Default Screen”
Device “ATI Technologies, Inc. Radeon 330M/340M/350M (RS200 IGP)”
Monitor “Generic Monitor”
DefaultDepth 24
SubSection “Display”
Depth 1
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 4
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 8
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 15
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 16
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 24
Modes “1024×768″ “800×600″ “640×480″
#Virtual 2048 768
EndSubSection
EndSection

Section “Screen”
Identifier “Default Screen2″
Device “ATI2″
Monitor “Generic Monitor2″
DefaultDepth 24
SubSection “Display”
Depth 1
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 4
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 8
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 15
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 16
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 24
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
EndSection

Section “ServerLayout”
Identifier “Default Layout”
Screen 0 “Default Screen”
Screen 1 “Default Screen2″ LeftOf “Default Screen”
InputDevice “Generic Keyboard”
InputDevice “Configured Mouse”
InputDevice “stylus” “SendCoreEvents”
InputDevice “cursor” “SendCoreEvents”
InputDevice “eraser” “SendCoreEvents”
InputDevice “Synaptics Touchpad”
EndSection

Section “DRI”
Mode 0666
EndSection

por ultimo quiero que sepan que es una Piv vieja, que una HP 9010, de esos modelos que compro HP cuando adquirio Compaq.

PD. Perdon si el post de los videos anteriores estuvo pesado…

Hasta la proxima, dudas a sadap99@gmail.com


Seguir

Get every new post delivered to your Inbox.