Desde atualização automática no Ubuntu 13.04, problema ao carregar o módulo do kernel NVIDIA

0

Desde uma atualização automática que adiciona o servidor X (Xorg), o problema no carregamento do módulo do kernel da NVIDIA é exibido. Antes do Xorg não aparecer no processo atual, é por isso que o Xorg foi adicionado.

Aqui está o /var∕log/Xorg.0.log :

[  4931.982]    Module class: X.Org Video Driver
[  4931.986] (EE) NVIDIA: Failed to load the NVIDIA kernel module. Please check your
[  4931.986] (EE) NVIDIA:     system's kernel log for additional error messages.

[  4932.785] (EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found)

Aqui está minha placa gráfica:

$ lspci| grep VGA

01:00.0 VGA compatible controller: NVIDIA Corporation GT216M [GeForce GT 320M] (rev a2)

dmesg: arquivo inteiro aqui

...
[   20.883670] ppdev: user-space parallel port driver
[   21.190115] init: nvidia-persistenced main process (1257) terminated with status 1
[   22.037723] r8169 0000:03:00.0 eth0: link down
[   22.037777] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   22.038057] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   23.797388] Bridge firewalling registered
[   24.159079] ip_tables: (C) 2000-2006 Netfilter Core Team
[   24.372053] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   24.583618] IPv6: ADDRCONF(NETDEV_UP): virbr0: link is not ready
[   25.197600] Ebtables v2.0 registered
[   25.252503] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   25.271254] cgroup: libvirtd (1470) created nested cgroup for controller "memory" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   25.271263] cgroup: "memory" requires setting use_hierarchy to 1 on the root.
[   25.271301] cgroup: libvirtd (1470) created nested cgroup for controller "devices" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   25.271349] cgroup: libvirtd (1470) created nested cgroup for controller "blkio" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   77.508828] vesafb: mode is 640x480x32, linelength=2560, pages=0
[   77.508836] vesafb: scrolling: redraw
[   77.508840] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[   77.513310] vesafb: framebuffer at 0xd1000000, mapped to 0xffffc90010d80000, using 1216k, total 1216k
[   77.513465] Console: switching to colour frame buffer device 80x30
[   77.514707] fb0: VESA VGA frame buffer device

[  167.689216] net_ratelimit: 14 callbacks suppressed
[  167.689267] ERROR @wl_cfg80211_get_station : Could not get rate (-1)
[  167.689333] ERROR @wl_cfg80211_get_station : Could not get rssi (-1)
[  167.689436] ERROR @wl_cfg80211_get_station : Could not get rate (-1)
[  167.690565] ERROR @wl_cfg80211_get_station : Could not get rssi (-1)
[  168.492108] cfg80211: Calling CRDA to update world regulatory domain
[  168.496662] cfg80211: World regulatory domain updated:
[  168.497392] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[  168.498869] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)

É possível resolver esse problema?

Obrigado

    
por Katsu 05.10.2013 / 15:32

2 respostas

0

Eu finalmente encontrei o problema. Para fins de desenvolvimento, tive que vincular o gcc ao gcc-4.4. Então, para resolver o meu problema eu tive que ligar o gcc ao meu mais recente: gcc-4.7. Próximo procedimento básico para reinstalar o driver funciona.

    
por Katsu 13.10.2013 / 00:53
-1

Eu enfrentei um problema semelhante depois de uma atualização para o 13.04, tudo foi bom até a versão 12.10. Eu fiz o seguinte

#uninstall the nvidia current driver.**
sudo apt-get remove nvidia-current

#use bumblebee 
sudo add-apt-repository ppa:bumblebee/stable
sudo apt-get update
sudo apt-get install bumblebee

Mais detalhes podem ser encontrados aqui

HIH

    
por Rohit Kalhans 06.10.2013 / 22:39