Como instalar o driver Netgear WNA1000M-N 150 no Debian?

0

Eu instalei o debian. Agora estou preocupado com o funcionamento do meu adaptador wi-fi.

Eu encontrei um link , mas não consegui install linux-firmware e sudo apt-get install linux-headers-generic build-essential didn ' t trabalho.

Não sabe sobre o firmware do Linux.

Aqui estão os erros ao instalar as coisas acima:

root@debian:/home/love# sudo apt-get install linux-headers-generic build-essential Reading package lists... Done Building dependency tree
Reading state information... Done Package linux-headers-generic is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package 'linux-headers-generic' has no installation candidate

root@debian:/home/love# sudo apt-get install linux-firmwareReading package lists... Done Building dependency tree
Reading state information... Done E: Unable to locate package linux-firmware

Ao adicionar o repositório, o seguinte erro apareceu:

root@debian:/home/love# deb http://http.debian.net/debian/ wheezy main contrib non-free bash: deb: command not found

Aqui estão alguns resultados de alguns comandos:

root@debian:/home/love# uname -a Linux debian 3.16.0-4-amd64 #1 SMP Debian 3.16.36-1+deb8u2 (2016-10-19) x86_64 GNU/Linux root@debian:/home/love# lsusb Bus 002 Device 005: ID 138a:0005 Validity Sensors, Inc. VFS301 Fingerprint Reader Bus 002 Device 004: ID 413c:2107 Dell Computer Corp. Bus 002 Device 016: ID 2a70:f00e
Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 001 Device 004: ID 04d9:a0ac Holtek Semiconductor, Inc. Bus 001 Device 003: ID 0846:9041 NetGear, Inc. WNA1000M 802.11bgn [Realtek RTL8188CUS] Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

O que devo fazer?

    
por Love Grover 08.01.2017 / 18:54

2 respostas

0

Abra seu sources.list :

nano /etc/apt/sources.list

depois remova o repo ofegante.

Existe um exemplo aqui :

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

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

deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free

Salvar e sair

Atualize seu sistema:

apt-get update && apt-get upgrade && apt-get dist-upgrade

Instale o pacote firmware-realtek :

apt-get install firmware-realtek

Referência: Debian-wiki

    
por 09.01.2017 / 11:58
0
  • o seu cache do APT está atualizado ( sudo apt-get update )?

  • os pacotes estão atualizados ( sudo apt-get upgrade )?

Por favor, forneça os erros, caso contrário, é difícil dizer o que está errado.

    
por 08.01.2017 / 19:09