더 이상 사용되지 않는 독점 304 드라이버를 사용하는 nVidia 카드로 해상도가 640x480에서 멈추는 문제를 해결하는 방법은 무엇입니까?

더 이상 사용되지 않는 독점 304 드라이버를 사용하는 nVidia 카드로 해상도가 640x480에서 멈추는 문제를 해결하는 방법은 무엇입니까?

탐색에 유용한 정보를 표시할 수 없는 화면 손상/아티팩트로 인해 Ubuntu 22.04 설치 중 및 설치 후에 'nomodeset' 지시문을 포함해야 했습니다.

이것의 가장 큰 단점은 해상도가 640x480에 고정되어 있는 반면 모니터(Hanns G HW223D)는 1680 x 1050을 지원한다는 것입니다. 키보드의 'Windows 플래그' 키를 누르고 있으면 창을 움직여 필요한 버튼을 보고 선택할 수 있습니다. 예를 들어 다음 또는 뒤로.

나는 지시를 따랐다.여기xrandr을 사용하여 새 해상도를 생성하고 응답을 받았습니다.
crtc 0 구성 실패.

다음은 각 명령을 입력할 때 표시되는 출력입니다. 또한 '-r' 없이 시도했습니다.

DS3:~$ cvt -r 1680 1050 60
# 1680x1050 59.88 Hz (CVT 1.76MA-R) hsync: 64.67 kHz; pclk: 119.00 MHz
Modeline "1680x1050R"  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync

xrandr에 마지막 줄 추가

DS3:~$ sudo xrandr --newmode "1680x1050R"  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync
xrandr: Failed to get size of gamma for output default

DVI-D-0 대신 모니터 이름이 기본값으로 제공됩니다. 그래픽 카드가 'DVI-D 싱글 링크' 케이블로 연결되어 있습니다.

DS3:~$ xrandr | grep -e " connected [^(]" | sed -e "s/\([A-Z0-9]\+\) connected.*/\1/"
xrandr: Failed to get size of gamma for output default
default connected primary 640x480+0+0 0mm x 0mm
     

최대 해상도를 인식하는 데 시간이 좀 걸린 것 같습니다.

DS3:~$ xrandr -q
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 640 x 480, current 640 x 480, maximum 640 x 480
default connected primary 640x480+0+0 0mm x 0mm
   640x480        0.00* 
  1680x1050R (0x535) 119.000MHz +HSync -VSync
    h: width  1680 start 1728 end 1760 total 1840 skew    0 clock  64.67KHz
    v: height 1050 start 1053 end 1059 total 1080           clock  59.88Hz
DS3:~$ sudo xrandr --addmode default 1680x1050R
xrandr: Failed to get size of gamma for output default
DS3:~$ sudo xrandr --output default --mode 1680x1050R
xrandr: Failed to get size of gamma for output default
xrandr: screen cannot be larger than 640x480 (desired size 1680x1050)

이제 최대 해상도가 인식됩니다.

DS3:~$ xrandr -q
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 640 x 480, current 640 x 480, maximum 1680 x 1050

xrandr이 새로운 해상도를 할당하지 못했습니다.

DS3:~$sudo xrandr --addmode default 1680x1050R
DS3:~$sudo xrandr --output default --mode 1920x1080R
xrandr: Failed to get size of gamma for output default
xrandr: Configure crtc 0 failed

또한 다음은 작동하지 않습니다.

DS3:~$ xrandr -s 1680x1050R
Failed to change the screen configuration!
DS3:~$ xrandr -s 1680x1050
Failed to change the screen configuration!

--verbose의 출력, 앞서 언급했듯이 '-r' 없이 cvt를 시도했습니다.

DS3:~$ xrandr --verbose
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 640 x 480, current 640 x 480, maximum 1680 x 1050
default connected primary 640x480+0+0 (0x524) normal (normal) 0mm x 0mm
    Identifier: 0x523
    Timestamp:  7970560
    Subpixel:   horizontal rgb
    Clones:    
    CRTC:       0
    CRTCs:      0
    Transform:  1.000000 0.000000 0.000000
                0.000000 1.000000 0.000000
                0.000000 0.000000 1.000000
               filter: 
    _MUTTER_PRESENTATION_OUTPUT: 0 
    non-desktop: 0 
        supported: 0, 1
  640x480 (0x524)  0.000MHz *current
        h: width   640 start    0 end    0 total  640 skew    0 clock   0.00KHz
        v: height  480 start    0 end    0 total  480           clock   0.00Hz
  1680x1050R (0x535) 119.000MHz +HSync -VSync
        h: width  1680 start 1728 end 1760 total 1840 skew    0 clock  64.67KHz
        v: height 1050 start 1053 end 1059 total 1080           clock  59.88Hz
  1680x1050_60.00 (0x54e) 146.250MHz -HSync +VSync
        h: width  1680 start 1784 end 1960 total 2240 skew    0 clock  65.29KHz
        v: height 1050 start 1053 end 1059 total 1089           clock  59.95Hz
  1680x1050_30.00 (0x55b) 67.750MHz -HSync +VSync
        h: width  1680 start 1736 end 1896 total 2112 skew    0 clock  32.08KHz
        v: height 1050 start 1053 end 1059 total 1071           clock  29.95Hz

Ubuntu가 비디오 카드를 인식하고 Nouveau 드라이버가 있음을 확인했습니다.

DS3:~$ lspci -k | grep -iEA5 'vga|display|3d'
01:00.0 VGA compatible controller: NVIDIA Corporation G70 [GeForce 7800 GT] (rev a1)
    Subsystem: eVga.com. Corp. G70 [GeForce 7800 GT]
    Kernel modules: nvidiafb, nouveau
03:00.0 SATA controller: JMicron Technology Corp. JMB363 SATA/IDE Controller (rev 02)
    Subsystem: Gigabyte Technology Co., Ltd Motherboard
    Kernel driver in use: ahci
    Kernel modules: ahci

DS3:~$ lsmod | grep nouveau
nouveau              2306048  0
mxm_wmi                16384  1 nouveau
drm_ttm_helper         16384  1 nouveau
ttm                    86016  2 drm_ttm_helper,nouveau
drm_kms_helper        311296  1 nouveau
i2c_algo_bit           16384  1 nouveau
video                  61440  1 nouveau
wmi                    32768  2 mxm_wmi,nouveau
drm                   622592  4 drm_kms_helper,drm_ttm_helper,ttm,nouveau

모니터와 비디오카드는 2007년 제품으로 15년된 제품입니다. 다음 포럼우편, 그래픽 카드가 더 많은 책임이 있음을 암시하는 것 같습니다. 커널 4.15 이상이 설치된 Ubuntu에서는 독점 nVidia 304 드라이버 설치를 허용하지 않습니다. 또한 설치 단계에서 800x600을 시도했지만 동일한 crtc 0이 실패했습니다.

CPU: Intel Core 2 Duo E6300 1.8 ghz
마더보드: 965P 칩셋이 포함된 Gigabyte DS3
Ram: 2x1gb + 2x2gb = 6gb ram
기타: Intel 솔리드 스테이트 드라이버 160MB/s 읽기 속도

관련 정보