그렇습니다, 그러나 --auto
옳은 일을하고 있습니다. 대신 다음과 같은 작업을 수행하십시오.
xrandr --addmode VGA1 1024x768
xrandr --output VGA1 --mode 1024x768 --right-of LVDS1
모든 비디오 출력에서 비슷한 문제가있는 다른 사용자의 경우 먼저 xrandr
어떤 출력이 있는지 확인하십시오.
~$ xrandr -q
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 8192 x 8192
eDP1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 294mm x 165mm
1920x1080 60.0*+ 59.9 40.0
1680x1050 60.0 59.9
1600x1024 60.2
1400x1050 60.0
1280x1024 60.0
1440x900 59.9
1280x960 60.0
1360x768 59.8 60.0
1152x864 60.0
1024x768 60.0
800x600 60.3 56.2
640x480 59.9
VGA1 disconnected (normal left inverted right x axis y axis)
1024x768 60.0
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
1024x768 60.0
이 경우 기본 화면을 eDP1이라고하고 추가 출력은 VGA1, HDMI1 및 DP1 (Mini DisplayPort)입니다.
예를 들어 720x480에서 Mini DisplayPort로 출력을 강제 실행
xrandr --addmode DP1 720x480
그리고
xrandr --output DP1 --mode 720x480 --right-of eDP1