O controlador Ethernet não funciona no novo laptop Dell Vostro 2520

O controlador Ethernet não funciona no novo laptop Dell Vostro 2520

Eu sou muito novo no Ubuntu. hoje mesmo, quando tentei conectar meu cabo LAN, ele não mostrou nada. o resultado da sudo lshw -C networkexibição do Controlador Ethernet em *-network unclaimed. Em Configurações > Rede, nenhuma conexão com fio é exibida. por favor ajude

suravi@suravi-Vostro-2520:~$ lspci -nn |grep 0200
09:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 07)

Responder1

Problema resolvido. graças aesta postagem:

Ubuntu 11.04 - o Natty Narval

Algumas semanas atrás, meu Realtek PCI Express a bordo foi lançado. Achei que o chip onboard estava frito, então instalei outra placa Ethernet, uma ENLGA-1320, tudo funcionou bem até por volta das 12h de hoje e depois falhei, sem conexão com a Internet também. Então comecei minha pesquisa no Google e finalmente consegui fazê-lo funcionar 5 horas depois.

Aqui está o que não funcionou, mas coisas que você pode tentar fazer para que funcione... pois parecia que estava funcionando para alguns, mas não para mim.

Uma inicialização a frio cujas informações foram coletadas deste tópico. http://www.uluga.ubuntuforums.org/showthread.php?t=1436667

Dando crédito a esse fórum ao vinculá-lo, fornecerei as informações abaixo:

Instruções para partida a frio:

  • Desligue a máquina
  • Desconecte todos os cabos da torre (especialmente o cabo de alimentação)
  • Mantenha pressionado o botão liga / desliga por 30 segundos e solte
  • Pressione o botão um ou dois minutos para garantir, aguarde 3 minutos.
  • Conecte todos os cabos novamente e pressione o botão liga / desliga
  • A Internet pode ou não estar ativa agora.

Isso não funcionou para mim e, se não funcionou para você, vamos continuar. Este é outro post localizado no tópico vinculado acima, novamente vou resumir. Abra um terminal e faça o seguinte.

Verifique o número do modelo do seu controlador Ethernet:

:~$ lspci | grep Realtek
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Check the driver your kernel is loading:

:~$ lsmod | grep r816*
r8169 36489 0
mii 4425 1 r8169
Download the 8168 Linux drivers from http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=5&PFid=5&Level=5&Conn=4&DownTypeID=3&GetDown=false#RTL8111B/RTL8168B/RTL8111/RTL8168%3Cbr%3ERTL8111C/RTL8111CP/RTL8111D%28L%29%3Cbr%3ERTL8168C/RTL8111DP/RTL8111E%3Cbr%3ERTL8105E

cd para o diretório onde você baixou o driver realtek:

:~$ cd Downloads extract the files:

:~$ tar -xvf r8168-8.020.00.tar.bz2 cd to the newly extracted folder:

:~$ cd r8168-8.020.00 Auto compile the driver:

:~$ sudo ./autorun.sh I highly doubt this is needed, because at this point my machine restarted its network connection on its own.

No entanto, ainda incluirei os comandos opcionais para testar o driver.

:~$ sudo rmmod r8169
:~$ sudo modprobe r8168
:~$sudo /etc/init.d/networking restart
At this point your network should be up and running, if not do not take the following next two steps. Blacklist r8169:

:~$ sudo gedit /etc/modprobe.d/blacklist.conf
Append the following lines:
#Blacklist Realtek RTL8111/8169 gigabit driver
blacklist r8169
Save and quit
Update driver cache:
:~$ update-initramfs -u
Reboot, and see if correct driver has loaded:
$ lsmod | grep r816*
r8168 91629 0

Ok, então se isso funcionou para você, legal, no entanto, para mim, fiquei novamente consternado e tive que encontrar outra solução. Desta vez estou desesperado, esta é minha caixa de desenvolvimento, mas também meio louco e vou fazer o que for preciso para colocá-la em funcionamento,

http://www.webupd8.org/2009/06/how-to-manually-set-up-your-wired.html

O link acima é de onde veio a maioria/partes das instruções a seguir, deve dar crédito onde o crédito é devido.

Remove any drivers/modules installed i had both r8169 and r8168 installed so in terminal write

:~$ sudo rmmod r8169
sudo rmmod r8168
So now I have no eth0 at this point. Remove network manager:

sudo apt-get remove network-manager-gnome network-manager now in terminal type:

:~$ ifconfig
all I saw was lo listed and not eth0, again I was lost but I thought what the hey might as well continue on with the instructions

que foram fornecidos pelo link mencionado acima. Configure manualmente o /etc/network/interfacestipo de terminal: gksu gedit /etc/network/interfaces Eu configurei um IP estático e mesmo que Tudo o que estava no arquivo fosse

auto lo
iface lo inet loopback I still appended the following to that file:

auto eth0
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.0.1 Change eth0, address, and gateway to your own network values. Save the file and close it. For the static IP It

necessário para encontrar os servidores de nomes de domínio (DNS). Esta é a função do /etc/resolv.confarquivo, então você precisa editá-lo. Se o arquivo não existir, crie-o. No terminal:

gksu gedit /etc/resolv.conf In that file place the following:

nameserver 208.67.222.222
nameserver 208.67.220.220 Replace these values with your own DNS values. I just used googles DNS

nameserver 8.8.8.8
nameserver 8.8.4.4 Save and close the file. Download the 8168 Linux drivers from RealTek:

http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=5&PFid=5&Level=5&Conn=4&DownTypeID=3&GetDown=false#RTL8111B/RTL8168B/RTL8111/RTL8168%3Cbr%3ERTL8111C/RTL8111CP/RTL8111D% 28L%29%3Cbr%3ERTL8168C/RTL8111DP/RTL8111E%3Cbr%3ERTL8105E

cd para o diretório onde você baixou o driver realtek:

:~$ cd Downloads extract the files:

:~$ tar -xvf r8168-8.020.00.tar.bz2 cd to the newly extracted folder:

:~$ cd r8168-8.020.00 Auto compile the driver:

:~$ sudo ./autorun.sh Now restart the network in terminal :

:~$ sudo /etc/init.d/networking restart

Ok, neste momento meu pc ficou totalmente preto após redefinir a rede, estava ligado, mas ninguém estava em casa. Então, desliguei-o manualmente, segurando o botão liga / desliga, liguei-o novamente e o eth0 funciona perfeitamente agora, e esse é o integrado que saiu primeiro na placa-mãe.

informação relacionada