У меня проблемы с настройкой двух мониторов в моем Linux Mint 17.1.

Под системным меню есть приложение для отображения, и когда я запускаю его, оно говорит, что у меня есть два монитора (оно даже знает марку каждого монитора!). Проблема в том, что если я настрою приложение для чего-либо, кроме зеркального отображения, один из двух мониторов погаснет. Я использую видеокарту с двумя мониторами. Я не добавил никаких драйверов, просто установил последнюю версию Linux Mint.

Вот вывод lspci :

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)

1 ответ1

0

Раздел комментариев не допускает большого количества текста. Так и здесь.

    ## 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

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .