CRT 모니터가 있는 컴퓨터에 Ubuntu14.04 64비트가 설치되어 있습니다. Windows에서는 모니터의 새로 고침 빈도를 85Hz로 설정할 수 있습니다. 그러나 Ubuntu는 xrandr
1024x756의 경우 최대값이 60Hz라고 보고합니다. 이 문제를 해결할 수 있는 방법이 있나요?
저장소에 현재 nvidia Ubuntu 드라이버를 설치했습니다. 아무것도 바뀌지 않았다.
편집1:
$ xrandr --properties
Screen 0: minimum 8 x 8, current 1024 x 768, maximum 8192 x 8192
DVI-I-0 disconnected primary (normal left inverted right x axis y axis)
SignalFormat: VGA
supported: VGA
ConnectorType: DVI-I
ConnectorNumber: 0
_ConnectorLocation: 0
VGA-0 connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
SignalFormat: VGA
supported: VGA
ConnectorType: VGA
ConnectorNumber: 1
_ConnectorLocation: 2
1024x768 60.0*+
1360x768 60.0 59.8
1152x864 60.0
800x600 72.2 60.3 56.2
680x384 60.0 59.8
640x480 59.9
512x384 60.0
400x300 72.2
320x240 60.1
DVI-I-1 disconnected (normal left inverted right x axis y axis)
SignalFormat: TMDS
supported: TMDS
ConnectorType: DVI-I
ConnectorNumber: 0
_ConnectorLocation: 0
편집2:
$ gtf 1024 756 85
# 1024x756 @ 85.00 Hz (GTF) hsync: 67.49 kHz; pclk: 92.87 MHz
Modeline "1024x756_85.00" 92.87 1024 1088 1200 1376 756 757 760 794 -HSync +Vsync
$ xrandr --newmode "1024x756_85.00" 92.87 1024 1088 1200 1376 756 757 760 794 -HSync +Vsync
X Error of failed request: BadName (named color or font does not exist)
Major opcode of failed request: 140 (RANDR)
Minor opcode of failed request: 16 (RRCreateMode)
Serial number of failed request: 27
Current serial number in output stream: 27
편집3:
$ xrandr --newmode "myrate" 92.87 1024 1088 1200 1376 756 757 760 794 -HSync +Vsync
$ xrandr --addmode VGA-0 myrate
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 140 (RANDR)
Minor opcode of failed request: 18 (RRAddOutputMode)
Serial number of failed request: 27
Current serial number in output stream: 28
답변1
모니터가 원하는 구성을 지원한다고 확신하는 경우 화면에 새 모드를 추가할 수 있습니다.
먼저 gtf
올바른 형식의 모드 행을 요청하십시오.
> gtf 1024 756 85
# 1024x756 @ 85.00 Hz (GTF) hsync: 67.49 kHz; pclk: 92.87 MHz
Modeline "1024x756_85.00" 92.87 1024 1088 1200 1376 756 757 760 794 -HSync +Vsync
그런 다음 의 출력으로 새 모드를 만듭니다 gtf
.
xrandr --newmode "1024x756_85.00" 92.87 1024 1088 1200 1376 756 757 760 794 -HSync +Vsync
출력에 모드를 추가합니다(VGA-0, DVI-1 등일 수 있음).
xrandr --addmode VGA-0 1024x756_85.00
마지막으로 새 모드를 선택합니다.
xrandr --output VGA-0 --mode 1024x756_85.00
원천:우분투 포럼