Nvidia & Kernel-2.6.17

Для новичков как вообще в Linux, так и в конкретной теме, к которой относится вопрос.

Модератор: Bizdelnick

Аватара пользователя
SANTA
Сообщения: 181
ОС: GNU/Linux

Nvidia & Kernel-2.6.17

Сообщение SANTA »

Вообщем странная штука, поставил новое ведро, скомпилил дрова NVIDIA 8756, вроде все нормально прошло...
Запускаю X, и о "чудо", разрешение стало вместо 1280х1024, 640х480
Я даже незнаю что за чудо такое
Вот кусок xorg.conf

Код: Выделить всё

Section "Screen"
    Identifier     "Screen 1"
    Device         "Geforce"
    Monitor        "SONY"
    DefaultDepth    24
    SubSection     "Display"
        Viewport    0 0
        Depth       8
        Modes      "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       16
        Modes      "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       24
        Modes      "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
Спасибо сказали:
Аватара пользователя
idler
Сообщения: 133
ОС: Debian Unstable / Gentoo

Re: Nvidia & Kernel-2.6.17

Сообщение idler »

Была такая же проблема с ядром 2.4 в Debian Stable
xorg.conf выглядел примерно так же
долго колдовал в итоге осталось вот что:

Код: Выделить всё

Section "Screen"
    Identifier    "Default Screen"
    Device        "NVIDIA Corporation NV34 [GeForce FX 5200]"
    Monitor        "Generic Monitor"
    DefaultDepth    24
    SubSection "Display"
        Depth        1
        Modes        "1280x1024"
    EndSubSection
    SubSection "Display"
        Depth        4
        Modes        "1280x1024"
    EndSubSection
    SubSection "Display"
        Depth        8
        Modes        "1280x1024"
    EndSubSection
    SubSection "Display"
        Depth        15
        Modes        "1280x1024"
    EndSubSection
    SubSection "Display"
        Depth        16
        Modes        "1280x1024"
    EndSubSection
    SubSection "Display"
        Depth        24
        Modes        "1280x1024"
    EndSubSection
EndSection

все работает
Sad, but true: # rm -rf /
Спасибо сказали: