Autor Tópico: Problema ao usar duas telas em um laptop  (Lida 1678 vezes)

Offline cybertraveler

  • Usuário Ubuntu
  • *
  • Mensagens: 54
    • Ver perfil
Problema ao usar duas telas em um laptop
« Online: 15 de Abril de 2008, 08:52 »
Olá, pessoal do Ubuntu Fórum. Vim pedir ajuda porque estou com o seguinte problema:

Estou usando um Laptop Vaio da Sony. O Kubuntu funciona perfeitamente bem nele. Agora eu liguei à ele um outro monitor, o LG Flatron L192WS. Agora, tudo o que aparece em um monitor aparece no outro. Normal, isso é feito via hardware. Mas o que eu quero fazer é:

a) Usar  modo dual screen de modo que eu possa arrastar janelas de uma tela para a outra.
b) Aumentar a resolução da tela maior.

O problema é que eu não consigo fazer isso pelo painel de controle do KDE, mesmo que eu entre no Administrator Mode. Mesmo no Administrator Mode, quando estou na seção "Monitor e Display", o botão "Apply" aparece apagado. O mesmo ocorre com o botão "Test" que fica na aba "Hardware". Ao lado deste botão "Test" , aparece escrito "This configuration cannot be safely tested", mesmo que eunão mude configuração alguma.

O meu xorg.conf atualmente está do seguinte modo:

Código: [Selecionar]
Section "Files"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
# path to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load "i2c"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "vbe"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
Option "XkbVariant" "intl"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/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/input/wacom"
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "Device"
Identifier "Intel Corporation 82852/855GM Integrated Graphics Device"
Driver "i810"
BusID "PCI:0:2:0"
EndSection

Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
HorizSync 28-64
VertRefresh 43-60
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation 82852/855GM Integrated Graphics Device"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x768"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x768"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x768"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x768"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x768"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x768"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "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


Eu tentei mudar o xorg.conf adicionando mais uma seção screen seguindo um tutorial, mas não consegui. Mas também pode ser culpa minha, já que não sou muito bom em configurar manualmente o xorg.conf.

Em um outro computador, que usa um monitor idêntico (mas não é um laptop e nem está com xinerama) que usa o Ubuntu como sistema operacional, este monitor (o da LG) funciona perfeitamente bem. O xorg.conf do outro computador está da seguinte forma (estou listando apenas as partes relevantes):

Código: [Selecionar]
Section "Device"
Identifier "Generic Video Card"
Driver "nvidia"
Busid "PCI:0:13:0"
Option "AddARGBVisuals" "True"
Option "AddARGBGLXVisuals" "True"
Option "NoLogo" "True"
EndSection

Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
Horizsync 30-70
Vertrefresh 50-160
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Generic Video Card"
Monitor "Generic Monitor"
Defaultdepth 24
EndSection

  screen "Default Screen"
Inputdevice "Generic Keyboard"
Inputdevice "Configured Mouse"

# Uncomment if you have a wacom tablet
# InputDevice     "stylus" "SendCoreEvents"
# InputDevice     "cursor" "SendCoreEvents"
# InputDevice     "eraser" "SendCoreEvents"
EndSection
Section "Module"
Load "glx"
EndSection

Alguém aqui tem alguma dica do que eu posso fazer para resolver o problema?
« Última modificação: 15 de Abril de 2008, 08:57 por cybertraveler »