듀얼 모니터 설정 : xrandr와 xorg.conf 지점 (서로 두 개의 화면, 한

GNU / 리눅스의 듀얼 모니터 설정은 재미 있다고 알려져 있습니다! 며칠 동안 내 xorg.conf를 살펴본 후 시작하여 원하는 것을 거의 얻을 수있는 지점 (서로 두 개의 화면, 한 화면에서 다른 화면으로 드래그 할 수있는 창)에 도달했습니다. X를 누른 다음 수동으로 호출하십시오.

xrandr --output CRT2 --right-of DFP2

Xinerama가 내 설정에서 작동하지 않기 때문에 RandR 1.3을 사용하고 있습니다 (또한 사용되지 않는 것처럼 보입니다).

이 웹 사이트 에 따르면 xorg.conf를 통해 동일한 효과를 정적으로 얻을 수 있어야하지만 제대로 작동하지 않는 것 같습니다.

내 ATI 카드, 그놈 2.32.1에 fglrx 드라이버를 사용하고 있으며 xorg.conf는 다음과 같습니다.

Section "ServerFlags"
    Option      "RandR" "on"
EndSection

Section "Device"
    Identifier  "Device"
    Driver      "fglrx"
    BusID       "PCI:1:0:0"
    Option      "Monitor-DFP2"      "Monitor0"
    Option      "Monitor-CRT2"      "Monitor1"
EndSection

Section "Monitor"
    Identifier      "Monitor0"
EndSection

Section "Monitor"
    Identifier      "Monitor1"
    Option          "RightOf"       "Monitor0"
EndSection

Section "Screen"
    Identifier      "Screen"
    Device          "Device"
    Monitor         "Monitor0"
    DefaultDepth     24
    SubSection "Display"
        Depth     24
        Modes     "1920x1080"
        Virtual   3840 1080
    EndSubSection
EndSection

나에게 이것은 앞에서 언급 한 웹 사이트에서 권장하는 설정과 거의 비슷하지만 두 모니터에서 동일한 이미지를 얻을 수 있습니다. 다시, 나는 xrandr를 호출하여 원하는 효과를 얻을 수 있습니다.

xorg.conf를 어떻게 고칠 수 있습니까?



답변

화면 섹션에서 “모니터”항목을 잊어 버렸습니다.

아래를보십시오 :

Section "Device"
        Identifier     "nvidia"
        Driver "nouveau"
        Option "Monitor-DVI-D-0" "samsung"
        Option "Monitor-VGA-1" "acer"
EndSection


Section "Monitor"
          Identifier   "samsung"
        Option "PreferredMode" "1280x1024_60.00"
EndSection


Section "Monitor"
          Identifier   "acer"
        Option "PreferredMode" "1280x1024_60.00"
          Option "RightOf" "samsung"
EndSection

Section "Screen"
    Identifier "screen1"
   Monitor "samsung"
    DefaultDepth 24
      SubSection "Display"
       Depth      24
       Virtual 2560 2048
      EndSubSection
    Device "nvidia"
EndSection

Section "ServerLayout"
    Identifier "layout1"
    Screen "screen1"
EndSection


답변

ATI 독점 fglrx 드라이버를 사용하여 xorg.conf에 듀얼 모니터가있는 Fedora 14가 있으며 두 모니터에 데스크탑이 분산되어 있습니다.

나는 aticonfig --initial=dual-head1 년 전쯤에 xorg.conf를 생성하고 조금 조정했다고 생각합니다. 해봐 참고로 여기 xorg.conf가 있습니다.

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

Section "Files"
EndSection

Section "Module"
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-DFP3"
    Option      "VendorName" "ATI Proprietary Driver"
    Option      "ModelName" "Generic Autodetecting Monitor"
    Option      "DPMS" "true"
    Option      "PreferredMode" "1920x1200"
    Option      "TargetRefresh" "60"
    Option      "Position" "0 0"
    Option      "Rotate" "normal"
    Option      "Disable" "false"
EndSection

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

Section "Device"
    Identifier  "aticonfig-Device[0]-0"
    Driver      "fglrx"
    Option      "Monitor-DFP3" "0-DFP3"
    Option      "Monitor-DFP4" "0-DFP4"
    BusID       "PCI:2:0:0"
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
        Virtual   3200 3200
        Depth     24
    EndSubSection
EndSection


답변

나의 최종 목표는 당신과 동일했습니다.

서로 옆에 두 개의 화면이 필요합니다. 창을 한 화면에서 다른 화면으로 드래그 할 수 있습니다.

다음은 Kubuntu 12.04에서 ATI 독점 드라이버 (사용중인 것과 동일)를 사용하여 수행 한 방법입니다. 이 처음 두 단계는 나에게 중요했습니다. (그들없이 듀얼 모니터 설정에 모든 종류의 문제가있었습니다.)

sudo apt-get --purge remove fglrx*
sudo apt-get install fglrx-updates fglrx-amdcccle-updates

루트 쉘에서 GUI 도구 실행하여 모니터를 설정하십시오 .

$ sudo -s
# amdcccle

“복제”옵션을 선택 취소하십시오. 그것은했다 충분히 내 경우. 위와 같이 시작하지 않으면 GUI 유틸리티가 작동하지 않습니다.

— Quote — 오늘날의 X는 수동 구성이 거의 필요하지 않습니다. X는 이제 적절한 기본값으로 자동 구성됩니다. 그놈과 KDE는 원하는 경우이 기본값을 넘어서 설정을 사용자 정의 할 수있는 GUI 유틸리티를 제공합니다.

그러나 때로는 이러한 도구가 허용하는 것 이상으로 구성을 수동으로 조정해야합니다 … — End Quote —

위의 내용은 저에게 사실이었습니다. 당신의 질문에서, 나는 그것이 당신에게도 진실이 아닌 이유를 보지 못합니다. Xorg.conf 또는 xrandr를 조정할 필요가 없었습니다. 그러나 3 개의 모니터로 옮길 때 구성 파일에서 몇 가지 사항을 조정해야했지만 GUI 구성 도구에서 “복제”설정을 선택 해제 한 후 모니터가 “복제”로 되돌아가는 데 아무런 문제가 없었습니다.


답변