Resolução de tela e vários monitores Kubuntu 11.10 Asus U46E BAL7

1

Acabei de instalar o Kubuntu no ASUS U46E BAL7. A instalação correu bem e eu sou capaz de usar o desktop. Mas parece reconhecer apenas um monitor de cada vez, seja o laptop ou o secundário, e não os dois. Além disso, a resolução mostrada é muito menor que a capacidade dos monitores.

Consegui gerar um arquivo xorg.conf, mas isso parece estar praticamente vazio. Eu sou cético sobre editá-lo e estragar o que está funcionando agora. Existe uma maneira de despejar a configuração existente que o kubuntu está usando em um arquivo, para que eu possa trabalhar modificando essas configurações ao invés de escrever tudo manualmente?

Por favor, encontre o meu arquivo xorg.conf anexado abaixo.

Obrigado milhões de antecedência.


Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf "Screen0"
    Screen      2  "Screen2" RightOf "Screen1"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    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"
    FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    FontPath     "built-ins"
EndSection

Section "Module"
    Load  "glx"
    Load  "dbe"
    Load  "dri"
    Load  "record"
    Load  "dri2"
    Load  "extmod"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option      "Protocol" "auto"
    Option      "Device" "/dev/input/mice"
    Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Monitor"
    Identifier   "Monitor1"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Monitor"
    Identifier   "Monitor2"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: : integer, : float, : "True"/"False",
        ### : "String", : " Hz/kHz/MHz",
        ### : "%"
        ### [arg]: arg optional
        #Option     "DRI"                   # []
        #Option     "ColorKey"              # 
        #Option     "VideoKey"              # 
        #Option     "FallbackDebug"         # []
        #Option     "Tiling"                # []
        #Option     "LinearFramebuffer"     # []
        #Option     "Shadow"                # []
        #Option     "SwapbuffersWait"       # []
        #Option     "TripleBuffer"          # []
        #Option     "XvMC"                  # []
        #Option     "XvPreferOverlay"       # []
        #Option     "DebugFlushBatches"     # []
        #Option     "DebugFlushCaches"      # []
        #Option     "DebugWait"             # []
        #Option     "HotPlug"               # []
        #Option     "RelaxedFencing"        # []
    Identifier  "Card0"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: : integer, : float, : "True"/"False",
        ### : "String", : " Hz/kHz/MHz",
        ### : "%"
        ### [arg]: arg optional
        #Option     "ShadowFB"              # []
        #Option     "Rotate"                # 
        #Option     "fbdev"                 # 
        #Option     "debug"                 # []
    Identifier  "Card1"
    Driver      "fbdev"
    BusID       "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: : integer, : float, : "True"/"False",
        ### : "String", : " Hz/kHz/MHz",
        ### : "%"
        ### [arg]: arg optional
        #Option     "ShadowFB"              # []
        #Option     "DefaultRefresh"        # []
        #Option     "ModeSetClearScreen"    # []
    Identifier  "Card2"
    Driver      "vesa"
    BusID       "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection

Section "Screen"
    Identifier "Screen1"
    Device     "Card1"
    Monitor    "Monitor1"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewpo
rt   0 0
        Depth     24
    EndSubSection
EndSection

Section "Screen"
    Identifier "Screen2"
    Device     "Card2"
    Monitor    "Monitor2"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection


Obrigado Venkat

EDIT: movido um monte de dados de uma seção de resposta não-resposta para a pergunta:

Obrigado pela resposta. Eu passei uma quantidade significativa de tempo tentando instalar o Ubuntu neste novo hardware. Nenhuma das versões 11.10 de 64 bits é inicializada por algum motivo. Então, fui em frente e instalei o Server primeiro e instalei o KDE após a conclusão da instalação do servidor. Além do

sudo apt-get install kubuntu-desktop
Eu não fiz muito. Eu me pergunto se eu perdi todas as instalações que são necessárias e isso pode estar causando o problema. Seus pensamentos ....

EDITAR

Desculpas. Problema com esta saída é que eu pessoalmente não consigo entender, pois não tem nenhuma informação de versão. Então, eu assumi que a saída do lshw teria mais informações.

Produção de lspci | grep VGA

00: 02.0 Controlador compatível com VGA: Família de processadores Intel Core de segunda geração Controlador gráfico integrado (rev 09)

EDITAR

saída xrandr:

%pr_e%

EDITAR

Sim, tenho o monitor externo ligado. Se eu tiver ligado durante o início, o padrão é o externo e mostra apenas isso. Não, o padrão é a tela do laptop e mostra apenas isso.

EDIT 04 de março de 2012 14:32

Isso o erro startx me dá.

xrandr: Failed to get size of gamma for output default
Screen 0: minimum 1280 x 1024, current 1280 x 1024, maximum 1280 x 1024
default connected 1280x1024+0+0 0mm x 0mm
   1280x1024      77.0* 
    
por ShaggyInjun 04.03.2012 / 08:43

2 respostas

0

O upgrade para Kubuntu 12.04 LTS com noapic ativado e nolapic e nomodeset removed resolveu esse problema, se alguém estiver procurando por ele. Se você atualizou para 12.04 e não removeu nolapic e nomodeset , isso não resolverá o problema. Agora sou capaz de visualizar dois monitores em sua resolução mais alta. Por favor, deixe-me saber se alguém é incapaz de ver esse comportamento, vou denunciá-lo no bug ou melhor ainda denunciá-lo.

link

    
por ShaggyInjun 01.05.2012 / 06:07
1

EDITAR: Primeiro faça o backup do que você tem ... você sempre pode inicializar em um terminal e restaurá-lo.

Então, você pode tentar este:

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf "Screen0"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    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"
    FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    FontPath     "built-ins"
EndSection

Section "Module"
    Load  "glx"
    Load  "dbe"
    Load  "dri"
    Load  "record"
    Load  "dri2"
    Load  "extmod"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option      "Protocol" "auto"
    Option      "Device" "/dev/input/mice"
    Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "Device"
        Identifier      "Intel"
        Driver         "intel"
        Option          "monitor-VGA" "A"
        Option          "monitor-LVDS" "B"
EndSection

Section "Monitor"
    Identifier    "A"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Monitor"
    Identifier   "B"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Screen"
        Identifier    "Screen0"
        Device        "Intel"
        Monitor       "A"
        DefaultDepth  24
        SubSection "Display"
                Depth          24
                Modes         "1280x1024"  "1024x768"   "640x480"
        EndSubSection
EndSection

Section "Screen"
        Identifier      "Screen1"
        Device        "Intel"
        Monitor       "B"
        DefaultDepth  24
        SubSection "Display"
                Depth          24
                Modes         "1280x1024"  "1024x768"   "640x480"
        EndSubSection
EndSection

/ EDITAR

Parece-me altamente irregular que você esteja usando um driver vesa com 3 monitores. Talvez você deva tentar usar um driver específico para o seu hardware. Eu uso o driver proprietário da ATI e esta é a minha configuração para referência:

Section "ServerLayout"
    Identifier     "aticonfig Layout"
    Screen      0  "aticonfig-Screen[0]-0" 0 0
    Screen         "aticonfig-Screen[0]-1" LeftOf "aticonfig-Screen[0]-0"
    Screen         "aticonfig-Screen[0]-2" LeftOf "aticonfig-Screen[0]-1"
EndSection

Section "Module"
EndSection

Section "ServerFlags"
    Option      "Xinerama" "on"
EndSection

Section "Monitor"
    Identifier   "aticonfig-Monitor[0]-0"
    Option      "VendorName" "ATI Proprietary Driver"
    Option      "ModelName" "Generic Autodetecting Monitor"
    Option      "DPMS" "true"
EndSection

Section "Monitor"
    Identifier   "aticonfig-Monitor[0]-1"
    Option      "VendorName" "ATI Proprietary Driver"
    Option      "ModelName" "Generic Autodetecting Monitor"
    Option      "DPMS" "true"
EndSection

Section "Monitor"
    Identifier   "aticonfig-Monitor[0]-2"
    Option      "VendorName" "ATI Proprietary Driver"
    Option      "ModelName" "Generic Autodetecting Monitor"
    Option      "DPMS" "true"
EndSection

Section "Device"
    Identifier  "aticonfig-Device[0]-0"
    Driver      "fglrx"
    BusID       "PCI:1:0:0"
    Screen      0
EndSection

Section "Device"
    Identifier  "aticonfig-Device[0]-1"
    Driver      "fglrx"
    BusID       "PCI:1:0:0"
    Screen      1
EndSection

Section "Device"
    Identifier  "aticonfig-Device[0]-2"
    Driver      "fglrx"
    BusID       "PCI:1:0:0"
    Screen      2
EndSection

Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device     "aticonfig-Device[0]-0"
    Monitor    "aticonfig-Monitor[0]-0"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
                Modes "1440x900_60.00"
    EndSubSection
EndSection

Section "Screen"
    Identifier "aticonfig-Screen[0]-1"
    Device     "aticonfig-Device[0]-1"
    Monitor    "aticonfig-Monitor[0]-1"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
                Modes "1440x900_60.00"
    EndSubSection
EndSection

Section "Screen"
    Identifier "aticonfig-Screen[0]-2"
    Device     "aticonfig-Device[0]-2"
    Monitor    "aticonfig-Monitor[0]-2"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
                Modes "1440x900_60.00"
    EndSubSection
EndSection

EDIT: Eu olhei para a sua configuração novamente e vejo três dispositivos diferentes, mas talvez você deva incluir algo sobre sua configuração de hardware para obter respostas mais úteis ...

    
por RobotHumans 04.03.2012 / 10:14