Linux Mint 17.1 não funciona no modo de monitor duplo

0

Estou com problemas para a configuração do meu monitor duplo funcionar na configuração do Linux Mint 17.1.

Existe um aplicativo de exibição no menu do sistema e, quando eu o executo, ele diz que eu tenho dois monitores (ele até conhece a marca de cada monitor!). O problema é que se eu definir o aplicativo para algo diferente de exibição espelhada, um dos dois monitores fica em branco. Estou usando uma placa de vídeo de monitor duplo. Eu não adicionei nenhum driver, apenas a última instalação do Linux Mint.

Esta é a lspci output:

01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] R520 [Radeon X1800 XT]
01:00.1 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] R520 [Radeon X1800] (Secondary)
    
por Bing Bang 05.03.2015 / 04:56

1 resposta

0

A seção de comentários não permite grandes quantidades de texto. Então aqui está.

    ## This is the layout for the X server
    Section "ServerLayout"
        Identifier  "Default Layout"
        Screen  0   "screen1" 0 0
        Option "Xinerama" "0"
    EndSection

    ## This defines your graphics card, there should
    ## only be ONE such section for each card.
    Section "Device"
        Identifier     "device1"
        Driver         "radeon"
        BusID          "PCI:1:0.0"
   ## Twinview lets you have one big desktop 
   ## shared between the screens
        Option     "TwinView"
   ## This is where you need to findthe names of your two monitors
   ## and edit the line below accordingly. This is what I have
   ## on my system:
        Option         "metamodes" "DP-3: 1600x900, VGA-0: 1440x900, DP-2: 1920x1080, DP-1: 2560x1024"
        Option         "TwinViewOrientation" "RightOf"
        Screen         1
   EndSection

   ## I don't think these sections do anything unless you
   ## Identify the monitor somehow, they can probably be removed.
   Section "Monitor"
        Identifier     "monitor1"
   EndSection
   Section "Monitor"
        Identifier     "monitor2"
   EndSection

   ## This is where you define a single screen that stretches 
   ## across both moitors.
   Section "Screen"
        Identifier     "screen1"
        Device         "device1"
        Monitor        "monitor1"
        SubSection     "Display"
            Depth       24
        EndSubSection
   EndSection
    
por 14.03.2015 / 20:00