Windows가 두 번째 모니터에 표시되지 않습니다. Debian ATI 독점 드라이버

Windows가 두 번째 모니터에 표시되지 않습니다. Debian ATI 독점 드라이버

내 컴퓨터에 Debian 7.8을 설치하고 드라이버를 설치하고 구성해 보았습니다. 두 번째 모니터에 창이 전혀 표시되지 않는다는 점을 제외하면 모든 것이 원활하게 진행됩니다. xinerama를 활성화하고 데비안 측 디스플레이 관리자에서 디스플레이를 활성화했습니다. 커서와 배경화면은 반응하지만 위의 창을 드래그하려고 하면 표시되지 않습니다. 제가 말하는 내용에 대한 그림은 다음과 같습니다.여기에 이미지 설명을 입력하세요.

이것은 내 xorg.conf입니다.

#Section "ServerLayout"
#   Option "Xinerama" "on"
#   Option "Clone" "off"
#EndSection
#
#Section "ServerLayout"
#   Screen 0 "first-screen"
#   Screen 1 "second-screen RightOf "first-screen"
#EndSection

Section "ServerLayout"
    Identifier     "aticonfig Layout"
    Screen      0  "aticonfig-Screen[0]-0" 0 0
    Screen         "amdcccle-Screen[1]-1" LeftOf "aticonfig-Screen[0]-0"
    Option      "Xinerama" "on"
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   "0-DFP6"
    Option      "VendorName" "ATI Proprietary Driver"
    Option      "ModelName" "Generic Autodetecting Monitor"
    Option      "DPMS" "true"
    Option      "PreferredMode" "1920x1080"
    Option      "TargetRefresh" "60"
    Option      "Position" "0 0"
    Option      "Rotate" "normal"
    Option      "Disable" "false"
EndSection

Section "Monitor"
    Identifier   "0-DFP7"
    Option      "VendorName" "ATI Proprietary Driver"
    Option      "ModelName" "Generic Autodetecting Monitor"
    Option      "DPMS" "true"
    Option      "PreferredMode" "1920x1080"
    Option      "TargetRefresh" "60"
    Option      "Position" "1920 0"
    Option      "Rotate" "normal"
    Option      "Disable" "false"
EndSection

Section "Device"
    Identifier  "aticonfig-Device[0]-0"
    Driver      "fglrx"
    Option      "Monitor-DFP6" "0-DFP6"
    Option      "Monitor-DFP7" "0-DFP7"
    BusID       "PCI:1:0:0"
EndSection

Section "Device"
    Identifier  "amdcccle-Device[1]-1"
    Driver      "fglrx"
    Option      "Monitor-DFP6" "0-DFP6"
    BusID       "PCI:1:0:0"
    Screen      1
EndSection

Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device     "aticonfig-Device[0]-0"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Virtual   3840 1920
        Depth     24
    EndSubSection
EndSection

Section "Screen"
    Identifier "amdcccle-Screen[1]-1"
    Device     "amdcccle-Device[1]-1"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection

관련 정보