우분투를 처음 사용합니다. Ubuntu 12.04를 설치했으며 LCD 디스플레이에 올바른 해상도를 설정하려고합니다.
LCD의 기본 해상도는 1920x1080입니다.
출력은 xrandr
다음 과 같습니다.
$ xrandr
Screen 0: minimum 320 x 200, current 1280 x 720, maximum 4096 x 4096
LVDS1 connected 1280x720+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1280x720 60.0*+
800x600 60.3 56.2
640x480 59.9
VGA1 disconnected (normal left inverted right x axis y axis)
그런 다음 새 모델을 만듭니다.
$ cvt 1920 1080 60
1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
여태까지는 그런대로 잘됐다. 그런 다음 다음을 사용하여 새 모드를 만듭니다 xrandr
.
$ xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
그러나 어떤 이유로 LCD 출력 (LVDS1) 대신 VGA (VGA1) 출력용으로 새 모드가 만들어졌습니다.
$ xrandr
Screen 0: minimum 320 x 200, current 1280 x 720, maximum 4096 x 4096
LVDS1 connected 1280x720+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1280x720 60.0*+
800x600 60.3 56.2
640x480 59.9
VGA1 disconnected (normal left inverted right x axis y axis)
1920x1080_60.00 (0xbc) 173.0MHz <---------- ????!!!!!!
h: width 1920 start 2048 end 2248 total 2576 skew 0 clock 67.2KHz
v: height 1080 start 1083 end 1088 total 1120 clock 60.0Hz
따라서 LVDS1에 모드를 추가하려고하면 오류가 발생합니다.
$ xrandr --addmode LVDS1 "1920x1080_60.00"
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 149 (RANDR)
Minor opcode of failed request: 18 (RRAddOutputMode)
Serial number of failed request: 25
Current serial number in output stream: 26
새 모드를 VGA1에 추가하면 정상적으로 작동하지만 해당 VGA1 출력은 사용하지 않습니다.