Linux Mint 17.1 nie działa w trybie podwójnego monitora

0

Mam problemy z uruchomieniem konfiguracji z dwoma monitorami w konfiguracji Linux Mint 17.1.

W menu systemowym jest aplikacja do wyświetlania, a kiedy ją uruchamiam, mówi, że mam dwa monitory (nawet zna markę każdego monitora!). Problem polega na tym, że jeśli ustawię aplikację na coś innego niż wyświetlacz lustrzany, jeden z dwóch monitorów zgaśnie. Używam karty graficznej z dwoma monitorami. Nie dodałem żadnych sterowników, tylko najnowszą instalację Linux Mint.

Oto lspciwynik:

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)
Bing Bang
źródło
Jeśli ktoś na to patrzy, próbowałem zhakować plik xorg.conf, ale to zablokowało mój ekran. Musiałem zalogować się z innego komputera, aby zabić MDM. Co się stało z dobrą komendą ol 'init 1? Teraz musisz wpisać „service mdm stop”, aby linux wszedł w tryb tekstowy dla pojedynczego użytkownika. To postęp dla ciebie. Ja rant Oto, co próbowałem:
Bing Bang

Odpowiedzi:

0

Sekcja komentarzy nie pozwala na duże ilości tekstu. Więc oto jest.

    ## 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
Bing Bang
źródło