You are currently browsing the tag archive for the 'iwlwifi' tag.

Neste Tutorial vou mostrar como migrar do antigo driver ipw para o novo iwlwifi da Intel.
A migração que será mostrada é no Gutsy, pois o Hardy já vêm com o novo driver iwlwifi.

Comece comentando o seguinte arquivo:

$ sudo gedit /etc/udev/rules.d/70-persistent-net.rules

Comente as seguintes linhas (acrescente a tralha “#” no começo das linhas).

# PCI device 0×8086:0×4222 (ipw3945)
#SYSTEM==”net”, DRIVERS==”?*”, ATTRS{address}==”00:00:00:00:00:00″, NAME=”eth1″

Salve e feche o arquivo.

Acrescente os drivers nativos na blacklist:

$ sudo gedit /etc/modprobe.d/blacklist

Acrescente:

blacklist ipw3945
blacklist ieee80211
blacklist ieee80211_crypt

Salve e feche o arquivo.

Habilite o módulo do novo driver:

$ sudo gedit /etc/modules

Acrescente:

iwlwifi_mac80211
iwl3945

Salve e feche o arquivo.

Execute os seguintes comandos como root para adicionar os módulos no kernel:

modprobe -r ipw3945
modprobe -r ieee80211
modprobe -r ieee80211_crypt_tkip
modprobe -r ieee80211_crypt_ccmp
modprobe -r ieee80211_crypt_wep
modprobe -r ieee80211_crypt
modprobe -r mac80211
modprobe iwlwifi_mac80211
modprobe iwl3945

O que foi mostrado é a retirada do driver antigo ipw e a ativação do novo driver da Intel, o iwlwifi

Boa sorte!