통합 AMD / ATI 그래픽 카드 (AMD E-350)가 장착 된 Compaq 100B 데스크탑에 연결된 DELL U2410 모니터가 있습니다. 설치된 O / S는 Ubuntu 10.04 LTS입니다.
컴퓨터는 DVI 연결을 통해 모니터에 연결됩니다.
문제는 데스크톱 해상도를 기본 1920x1200으로 설정할 수 없다는 것입니다. 허용되는 최대 해상도는 1600x1200입니다.
xrandr
유틸리티 에 대해 조사한 결과 입니다. 불행히도 그것을 사용하려고 할 때 필요한 해상도로 구성 할 수 없습니다. 먼저 출력 이름 (이어야 함 DVI-0
) 을보고하지 않고 default
대신 말합니다 . 그것 없이는 --fb
옵션을 사용할 수 없습니다 .
EDID 유틸리티가 모니터를 잘 식별하는 것 같습니다. 출력은 다음과 같습니다 get-edid
.
# EDID version 1 revision 3
Section "Monitor"
# Block type: 2:0 3:ff
# Block type: 2:0 3:fc
Identifier "DELL U2410"
VendorName "DEL"
ModelName "DELL U2410"
# Block type: 2:0 3:ff
# Block type: 2:0 3:fc
# Block type: 2:0 3:fd
HorizSync 30-81
VertRefresh 56-76
# Max dot clock (video bandwidth) 170 MHz
# DPMS capabilities: Active off:yes Suspend:yes Standby:yes
Mode "1920x1200" # vfreq 59.950Hz, hfreq 74.038kHz
DotClock 154.000000
HTimings 1920 1968 2000 2080
VTimings 1200 1203 1209 1235
Flags "-HSync" "+VSync"
EndMode
# Block type: 2:0 3:ff
# Block type: 2:0 3:fc
# Block type: 2:0 3:fd
EndSection
그러나 xrandr -q
명령은 다음을 반환합니다.
Screen 0: minimum 640 x 400, current 1600 x 1200, maximum 1600 x 1200
default connected 1600x1200+0+0 0mm x 0mm
1600x1200 0.0*
1280x1024 0.0
1152x864 0.0
1024x768 0.0
800x600 0.0
640x480 0.0
720x400 0.0
해상도를 설정하려고하면 다음과 같은 결과가 나타납니다.
$ xrandr --fb 1920x1200
xrandr: screen cannot be larger than 1600x1200 (desired size 1920x1200)
$ xrandr --output DVI-0 --auto
warning: output DVI-0 not found; ignoring
화면 해상도를 1920x1200으로 설정하려면 어떻게해야합니까? 출력을 xrandr
식별 하지 못하는 이유는 무엇 DVI-0
입니까?
10.04보다 높은 Ubuntu 버전을 실행하는 동일한 컴퓨터는 문제없이 올바른 해상도를 감지합니다. 이 컴퓨터에서는 레거시 하드웨어 호환성 문제로 인해 업그레이드 할 수 없습니다.
또한 하드웨어 드라이버 대화 상자에서 사용 가능한 옵션 화면 드라이버가 표시되지 않습니다.
----
업데이트 :
에 대한 대답 다음 이 질문에 , 나는 몇 가지 사전을 얻었다. 이제 필요한 모드가 목록에 xrandr -q
표시되지만 해당 모드로 전환 할 수 없습니다. 모니터 애플릿 (이제 새 모드를 표시 함)을 사용하여 다음과 같은 응답을 얻습니다.
The selected configuration for displays could not be applied. Could not set the configuration to CRTC 262
.
명령 행에서 다음과 같습니다.
$ cvt 1920 1200 60
# 1920x1200 59.88 Hz (CVT 2.30MA) hsync: 74.56 kHz; pclk: 193.25 MHz
Modeline "1920x1200_60.00" 193.25 1920 2056 2256 2592 1200 1203 1209 1245 -hsync +vsync
$ xrandr --newmode "1920x1200_60.00" 193.25 1920 2056 2256 2592 1200 1203 1209 1245 -hsync +vsync
$ xrandr -q
Screen 0: minimum 640 x 400, current 1600 x 1200, maximum 1600 x 1200
default connected 1600x1200+0+0 0mm x 0mm
1600x1200 0.0*
1280x1024 0.0
1152x864 0.0
1024x768 0.0
800x600 0.0
640x480 0.0
720x400 0.0
1920x1200_60.00 (0x120) 193.0MHz
h: width 1920 start 2056 end 2256 total 2592 skew 0 clock 74.5KHz
v: height 1200 start 1203 end 1209 total 1245 clock 59.8Hz
$ xrandr --addmode default 1920x1200_60.00
$ xrandr -q
Screen 0: minimum 640 x 400, current 1600 x 1200, maximum 1600 x 1200
default connected 1600x1200+0+0 0mm x 0mm
1600x1200 0.0*
1280x1024 0.0
1152x864 0.0
1024x768 0.0
800x600 0.0
640x480 0.0
720x400 0.0
1920x1200_60.00 59.8
$ xrandr --output default --mode 1920x1200_60.00
xrandr: Configure crtc 0 failed
또 다른 정보 (누군가를 돕는 경우) :
$ sudo lshw -c video
*-display UNCLAIMED
description: VGA compatible controller
product: ATI Technologies Inc
vendor: ATI Technologies Inc
physical id: 1
bus info: pci@0000:00:01.0
version: 00
width: 32 bits
clock: 33MHz
capabilities: pm pciexpress msi bus_master cap_list
configuration: latency=0
resources: memory:c0000000-cfffffff(prefetchable) ioport:f000(size=256) memory:feb00000-feb3ffff
----
업데이트 2 : 업데이트 된 lshw
목록 은 다음과 같습니다 .
$ sudo lshw -numeric -c video
*-display UNCLAIMED
description: VGA compatible controller
product: ATI Technologies Inc [1002:9802]
vendor: ATI Technologies Inc [1002]
physical id: 1
bus info: pci@0000:00:01.0
version: 00
width: 32 bits
clock: 33MHz
capabilities: pm pciexpress msi bus_master cap_list
configuration: latency=0
resources: memory:c0000000-cfffffff(prefetchable) ioport:f000(size=256) memory:feb00000-feb3ffff