"xrandr: 출력에 대한 crtc를 찾을 수 없음"을 수정하는 방법은 무엇입니까?

"xrandr: 출력에 대한 crtc를 찾을 수 없음"을 수정하는 방법은 무엇입니까?

나는 출근할 때마다 타이핑을 친다.

xrandr --auto
xrandr --output VGA1 --right-of LVDS1

이로 인해 두 번째 모니터가 제대로 작동했지만 이제

xrandr: cannot find crtc for output VGA1

다음은 참조용 xrandr의 출력입니다.

Screen 0: minimum 320 x 200, current 3286 x 1080, maximum 8192 x 8192
LVDS1 connected 1366x768+1920+0 (normal left inverted right x axis y axis) 277mm x 156mm
   1366x768       60.0*+
   1360x768       59.8     60.0  
   1024x768       60.0  
   800x600        60.3     56.2  
   640x480        59.9  
VGA1 connected (normal left inverted right x axis y axis)
   1680x1050      59.9 +
   1600x1200      60.0  
   1680x945       60.0  
   1400x1050      74.9     60.0  
   1600x900       60.0  
   1280x1024      75.0     60.0  
   1440x900       75.0     59.9  
   1280x960       60.0  
   1366x768       60.0  
   1360x768       60.0  
   1280x800       74.9     59.8  
   1152x864       75.0  
   1280x768       74.9     59.9  
   1280x720       60.0  
   1024x768       75.1     70.1     60.0  
   1024x576       60.0  
   832x624        74.6  
   800x600        72.2     75.0     60.3     56.2  
   848x480        60.0  
   640x480        72.8     75.0     66.7     60.0  
   720x400        70.1  
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
HDMI2 disconnected (normal left inverted right x axis y axis)
HDMI3 disconnected (normal left inverted right x axis y axis)
DP2 disconnected 1920x1080+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
DP3 disconnected (normal left inverted right x axis y axis)
  1920x1080 (0x1df)  148.5MHz
        h: width  1920 start 2008 end 2052 total 2200 skew    0 clock   67.5KHz
        v: height 1080 start 1084 end 1089 total 1125           clock   60.0Hz

답변1

이는 다른 화면이 이미 활성화되어 있기 때문에 발생합니다(이 경우) DP2. DP2이것은 DisplayPort를 통해 실행되는 모니터입니다. 노트북은 Lenovo x230이며 다음과 같이 제작되었습니다.슈퍼 베이스 3도킹 스테이션.

다음을 사용하여 화면을 끄면 이 문제를 해결할 수 있습니다.

xrandr --output DP2 --off

이제 XFCE 또는 유사한 워크스테이션에서는 데스크탑 영역이 축소되는 것을 볼 수 있습니다. 그런 다음 xrandr정상적으로 명령을 계속 실행할 수 있습니다 .

xrandr --auto
xrandr ...

답변2

그렇다면 동시에 두 개의 화면만 활성화할 수 있다는 뜻인가요? 다른 외부 화면을 열기 전에 하나의 외부 화면을 --off로 설정해야 합니까?

설정(Dell Latitude, 도킹 스테이션, 외부 VGA 화면 및 다른 외부 HDMI 화면)에 어려움을 겪고 있습니다. 지금까지는 운이 없었습니다.

명령은 예상대로 작동합니다.

xrandr --output HDMI-3 --auto --left-of LVDS-1 --output LVDS-1 --auto --primary --output VGA-1 --off

이 명령은 예상대로 작동합니다.

xrandr --output HDMI-3 --off --left-of LVDS-1 --output LVDS-1 --auto --primary --output VGA-1 --auto --right-of LVDS-1 

그러나 (내가 원하는) 다음 조합은 작동하지 않습니다.

xrandr --output HDMI-3 --auto --left-of LVDS-1 --output LVDS-1 --auto --primary --output VGA-1 --auto --right-of LVDS-1 
xrandr: cannot find crtc for output VGA-1

답변3

나는 이것이 오래된 게시물이라는 것을 알고 있지만 내 문제는 결국 케이블이었습니다. 내가 설정한 해상도를 지원할 만큼 빠르지 않습니다. 더 나은 케이블을 사용하거나 해상도를 낮추면 문제가 해결될 수 있습니다.

관련 정보