1

1

Estou tentando me conectar via wifi, mas continuo recebendo esta mensagem: (Não estou usando nenhuma interface)

SIOCSIFADDR: Não existe tal dispositivo

wlan0: ERRO ao obter sinalizadores de interface: tal dispositivo não existe

wlan0: ERRO ao obter sinalizadores de interface: tal dispositivo não existe

Vincular soquete à interface: Não existe tal dispositivo

Falha ao abrir wlan0.

Já editei o arquivo de interfaces em /etc/networks adicionando esta linha:

automático wlan0

iface wlan0 inet dhcp

e não consigo digitalizar usando "iwlist wlan0 scan"

Como posso tornar isso um cliente Wi-Fi?

Estou usando o Debian GNU/Linux 6.0

wlan0 não aparece na saída ifconfig -a que é:

eth0      Link encap:Ethernet  HWaddr f0:ad:4e:00:da:29  
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
          Interrupt:11 

eth1      Link encap:Ethernet  HWaddr 02:50:43:4a:8c:9b  
          BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
          Interrupt:15 

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:146 errors:0 dropped:0 overruns:0 frame:0
          TX packets:146 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:14127 (13.7 KiB)  TX bytes:14127 (13.7 KiB)

pan0      Link encap:Ethernet  HWaddr 02:1f:77:39:8d:28  
          BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

uap0      Link encap:Ethernet  HWaddr 00:24:23:78:08:69  
          inet addr:192.168.1.1  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::224:23ff:fe78:869/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:604 errors:0 dropped:0 overruns:0 frame:0
          TX packets:219 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:49186 (48.0 KiB)  TX bytes:18142 (17.7 KiB)

Responder1

Conecte seu computador à internet usando o cabo Ethernet, em seguida, em seu terminal, escolha qual distribuição Debian você prefere e execute o deb http....., depois de escolher qual distribuição Debian você deseja obter sua atualização, execute continue para não2

1

  • Debian 9 "Esticar"

deb http://httpredir.debian.org/debian/ stretch main contrib non-free

  • Debian 8 "Jessie"

deb http://httpredir.debian.org/debian/ jessie main contrib non-free

  • Para Debian 7 "Wheezy"

deb http://httpredir.debian.org/debian/ wheezy main contrib non-free

2

Atualize a lista de pacotes disponíveis e instale o pacote firmware-iwlwifi executando:sudo apt-get update && sudo apt-get install firmware-iwlwifi

3

Como o módulo iwlwifi é carregado automaticamente para dispositivos suportados, reinsira este módulo para acessar o firmware instalado:sudo modprobe -r iwlwifi ; modprobe iwlwifi

Depois disso, você pode querer reiniciar o computador e executarsudo ifconfig wlan0 up

Eu espero que isso ajude

informação relacionada