Autor Tópico: Instalando placas de vídeo antigas da NVIDIA!  (Lida 5999 vezes)

wolftec

  • Visitante
Instalando placas de vídeo antigas da NVIDIA!
« Online: 27 de Janeiro de 2006, 13:25 »
Olá povo!

Tive alguns problemas para instalar minha GeForce 2 GTS de 32MB com os drivers da NVIDIA. Aparentemente tudo estava certo, os fontes compilavam e instalavam - mas o módulo não encontrava o device, reportando a seguinte mensagem: "Error: No such device". Nem mesmo o driver pré-compilado do Ubuntu (nvidia-glx) resolvia este problema. Ou seja, não era problema de instalação do driver, mas sim de compatibilidade.

Procurando ajuda neste forum, fui auxiliado pelo Xterminator (Moderador) o qual me indicou o driver correto a ser utilizado.  Para placas mais antigas da NVIDIA, como a TNT2, GeForce e GeForce 2, o driver utilizado deve ser o nvidia-glx-legacy (apt-get install nvidia-glx-legacy) ao invés do nvidia-glx.

Abaixo, segue os links para referência e no qual esta dica foi baseada. Lembre-se, antes de instalar um novo driver, é necessário remover os drivers instalados por tentativas anteriores.


http://ubuntuforum-pt.org/index.php?topic=3266 - Tópico original.
http://breezy.ubuntuguidebrasil.org/#installnvidiadriver - Instalação do driver no Ubuntu.
http://www.guiadohardware.net/guias/02/index5.php - Tutorial do C. Morimoto - muito útil.



Qualquer dúvida, estamos aí. Ah sim, e um obrigado especial ao Xterminator, autor da dica original.

Abraços!

Offline biohazard

  • Usuário Ubuntu
  • *
  • Mensagens: 523
  • <thug life>
    • Ver perfil
Instalando placas de vídeo antigas da NVIDIA!
« Resposta #1 Online: 27 de Janeiro de 2006, 18:11 »
minha G2-MX400 , ainda roda com o driver normal nao preciso usar o legacy
Arch Linux Overlord
Kernel 2.6.25-ARCH

wolftec

  • Visitante
Instalando placas de vídeo antigas da NVIDIA!
« Resposta #2 Online: 28 de Janeiro de 2006, 11:22 »
Olá!

Não sei dizer ao certo quais placas só vão funcionar com o legacy, só sei que são alguns modelos antigos. Quando tiverem problemas, façam uma tentativa com ele ;-)

Abraços!

Offline etapombas

  • Usuário Ubuntu
  • *
  • Mensagens: 361
    • Ver perfil
    • Baixar.info
Instalando placas de vídeo antigas da NVIDIA!
« Resposta #3 Online: 28 de Janeiro de 2006, 14:28 »
Alem de instalar esse nvidia diferente ae, mudo algo no meu xorg????


meu xorg.conf

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
   FontPath   "/usr/share/X11/fonts/misc"
   FontPath   "/usr/share/X11/fonts/cyrillic"
   FontPath   "/usr/share/X11/fonts/100dpi/:unscaled"
   FontPath   "/usr/share/X11/fonts/75dpi/:unscaled"
   FontPath   "/usr/share/X11/fonts/Type1"
   FontPath   "/usr/share/X11/fonts/CID"
   FontPath   "/usr/share/X11/fonts/100dpi"
   FontPath   "/usr/share/X11/fonts/75dpi"
        # paths to defoma fonts
   FontPath   "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
   FontPath   "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection

Section "Module"
   Load   "bitmap"
   Load   "ddc"
   Load   "extmod"
   Load   "freetype"
   Load   "glx"
   Load   "int10"
   Load   "type1"
   Load   "vbe"
EndSection

Section "InputDevice"
   Identifier   "Generic Keyboard"
   Driver      "kbd"
   Option      "CoreKeyboard"
   Option      "XkbRules"   "xorg"
   Option      "XkbModel"   "abnt2"
   Option      "XkbLayout"   "br"
   Option      "XkbVariant"   "abnt2"
EndSection

Section "InputDevice"
   Identifier   "Configured Mouse"
   Driver      "mouse"
   Option      "CorePointer"
   Option      "Device"      "/dev/input/mice"
   Option      "Protocol"      "ImPS/2"
   Option      "Emulate3Buttons"   "true"
   Option      "ZAxisMapping"      "4 5"
EndSection

Section "Device"
   Identifier   "NVIDIA Corporation NV11 [GeForce2 MX/MX 400]"
   Driver      "nvidia"
   BusID      "PCI:0:8:0"
EndSection

Section "Monitor"
   Identifier   "L1550S"
   Option      "DPMS"
EndSection

Section "Screen"
   Identifier   "Default Screen"
   Device      "NVIDIA Corporation NV11 [GeForce2 MX/MX 400]"
   Monitor      "L1550S"
   DefaultDepth   24
   SubSection "Display"
      Depth      1
      Modes      "1024x768" "832x624" "800x600" "720x400" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      4
      Modes      "1024x768" "832x624" "800x600" "720x400" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      8
      Modes      "1024x768" "832x624" "800x600" "720x400" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      15
      Modes      "1024x768" "832x624" "800x600" "720x400" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      16
      Modes      "1024x768" "832x624" "800x600" "720x400" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      24
      Modes      "1024x768" "832x624" "800x600" "720x400" "640x480"
   EndSubSection
EndSection

Section "ServerLayout"
   Identifier   "Default Layout"
   Screen      "Default Screen"
   InputDevice   "Generic Keyboard"
   InputDevice   "Configured Mouse"
EndSection

Section "DRI"
   Mode   0666
EndSection

wolftec

  • Visitante
Instalando placas de vídeo antigas da NVIDIA!
« Resposta #4 Online: 28 de Janeiro de 2006, 21:16 »
Olá amigo! Pelo pouco que eu entendo, acho que não precisa de nada não, o xorg.conf não tem diferença nenhuma. Só um detalhe: olhe o post do biohazard logo acima, pelo que parece ele tem a mesma placa que você e não precisa utilizar o nvidia-glx-legacy. Beleza?

T+!

Offline LaSSarD

  • Usuário Ubuntu
  • *
  • Mensagens: 1.144
    • Ver perfil
Instalando placas de vídeo antigas da NVIDIA!
« Resposta #5 Online: 28 de Janeiro de 2006, 23:15 »
Eu tambem tenho a placa GeForce 2 MX 400 e funciona perfeitamente com os drivers nvidia-glx dos repositorios ;)
desculpem as mensagens não respondidas, mas eu tô afastado há mais de ano...
um dia eu volto ;)

Offline Xterminator

  • Usuário Ubuntu
  • *
  • Mensagens: 1.279
    • Ver perfil
Instalando placas de vídeo antigas da NVIDIA!
« Resposta #6 Online: 28 de Janeiro de 2006, 23:35 »
É só ler o README no site da nvidia pra saber qual driver utilizar ;-)