xrandr 모니터 3개

xrandr 모니터 3개

저는 HDPI가 아닌 다른 2개의 Dell 모니터(DP1.2가 포함된 Thunderbolt 3 및 데이지 체인 모니터 사용)와 함께 HDPI 노트북에서 Fedora 24를 사용하고 있습니다.

크기를 조정하여 3개의 모니터를 멋지게 표시하려고 합니다. 다음 명령을 사용하여 랩톱과 두 번째 모니터가 성공적으로 작동하도록 했습니다.

 xrandr --output eDP-1 --auto --output DP-1-8 --auto --panning 3840x2400+3840+0 --scale 2x2 --right-of eDP-1

그러나 세 번째 모니터에는 유용한 정보가 표시되지 않는 것 같습니다. 다음 명령을 사용해 보십시오:

xrandr --output eDP-1 --auto --output DP-1-8 --auto --panning 3840x2400+3840+0 --scale 2x2 --right-of eDP-1 --output DP-1-1-8 --auto --panning 3840x2400+3840+0 --right-of DP-1-8

두 번째 화면으로 이어지는 세 번째 모니터 추적 부분이 매우 확대되었습니다. 줌/팬을 꺼야 할 것 같아요.

누구든지 이 설정을 올바르게 설정하도록 도와줄 수 있나요?

아래의 디스플레이 설정을 참조하세요.

$ xrandr
Screen 0: minimum 320 x 200, current 7680 x 2400, maximum 8192 x 8192
eDP-1 connected primary 3840x2160+0+0 (normal left inverted right x axis y axis) 346mm x 194mm
   3840x2160     60.00*+
   2048x1536     60.00  
   1920x1440     60.00  
   1856x1392     60.01  
   1792x1344     60.01  
   1600x1200     60.00  
   1400x1050     59.98  
   1280x1024     60.02  
   1280x960      60.00  
   1024x768      60.04    60.00  
   960x720       60.00  
   928x696       60.05  
   896x672       60.01  
   800x600       60.00    60.32    56.25  
   700x525       59.98  
   640x512       60.02  
   640x480       60.00    59.94  
   512x384       60.00  
   400x300       60.32    56.34  
   320x240       60.05  
DP-1 disconnected (normal left inverted right x axis y axis)
HDMI-1 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
HDMI-2 disconnected (normal left inverted right x axis y axis)
DP-1-8 connected 3840x2400+3840+0 (normal left inverted right x axis y axis) 518mm x 324mm panning 3840x2400+3840+0
   1920x1200     59.95*+
   1920x1080     60.00    50.00    59.94    30.00    25.00    24.00    29.97    23.98  
   1600x1200     60.00  
   1280x1024     75.02    60.02  
   1152x864      75.00  
   1280x720      60.00    50.00    59.94  
   1024x768      75.03    60.00  
   800x600       75.00    60.32  
   720x576       50.00  
   720x480       60.00    59.94  
   640x480       75.00    60.00    59.94  
   720x400       70.08  
DP-1-1-8 connected 3840x2400+3840+0 (normal left inverted right x axis y axis) 518mm x 324mm panning 3840x2400+3840+0
   1920x1200     59.95*+
   1920x1080     60.00    50.00    59.94    30.00    25.00    24.00    29.97    23.98  
   1600x1200     60.00  
   1280x1024     75.02    60.02  
   1152x864      75.00  
   1280x720      60.00    50.00    59.94  
   1024x768      75.03    60.00  
   800x600       75.00    60.32  
   720x576       50.00  
   720x480       60.00    59.94  
   640x480       75.00    60.00    59.94  
   720x400       70.08  
DP-1-1-1 disconnected (normal left inverted right x axis y axis)
DP-1-1 disconnected (normal left inverted right x axis y axis)

답변1

xrandr --output eDP-1 --auto --output DP-1-8 --auto --panning 3840x2400+3840+0 --scale 2x2 --right-of eDP-1 --output DP-1-1-8 --auto --panning 3840x2400+ 3840 +0 --right-of DP-1-8

이 값이 맞나요? 첫 번째 화면은 x = 0에서 시작하고 두 번째 화면은 x = 3840, 세 번째 화면은 x = 3840에서 시작하며 기본적으로 두 번째 화면과 동일한 내용을 표시합니다.

노력하다:

xrandr --output eDP-1 --auto --output DP-1-8 --auto --panning 3840x2400+3840+0 --scale 2x2 --right-of eDP-1 --output DP-1-1-8 --auto --panning 3840x2400+ 7680 +0 --right-of DP-1-8

그러면 2차전이 끝나면 3차전이 시작됩니다.

답변2

나는 xrandr에 익숙하지 않기 때문에 일반적으로 /etc/X11/xorg.conf귀하의 경우와 같이 간단한 고정 설정으로 시작합니다.

Section "Monitor"
  Identifier "ONE"
  Option "PreferredMode"  "3840x2160"
  Option "Position" "0 0"
  Option "Primary" "true"
EndSection

Section "Monitor"
  Identifier "TWO"
  Option "PreferredMode"  "1920x1200"
  Option "Position" "3840 0"
  Option "RightOf" "ONE"
  Option "Primary" "true"
EndSection

Section "Monitor"
  Identifier "THREE"
  Option "PreferredMode"  "1920x1200"
  Option "Position" "5760 0"
  Option "RightOf" "TWO"
  Option "Primary" "true"
EndSection

Section "Device"
  Identifier  "intel-id"
  Driver "intel"
  Option "monitor-eDP-1" "ONE"
  Option "monitor-DP-1-8" "TWO"
  Option "monitor-DP-1-1-8" "THREE"
EndSection

X 서버를 다시 시작하고 가능하다면 다른 이동 및 확대/축소 옵션 등을 추가해 보십시오.

xorg.conf를 xrand 명령줄로 다시 변환해 볼 수 있습니다. 사실 반대쪽이 더 낫다는 건 알지만 이 쪽이 더 쉽습니다.

관련 정보