Como fazer Ubuntu reconhecer a placa de rede NVIDIA Corporation MCP61 Ethernet (rev a2)
Dica publicada em Linux / Comandos
Como fazer Ubuntu reconhecer a placa de rede NVIDIA Corporation MCP61 Ethernet (rev a2)
Devemos modificar alguns arquivos para tal feito.
* Tive oportunidade de ter essa placa mãe e funcionou:
Como usuário root:
# sed -i "/exit 0/d" /etc/rc.local
# echo modprobe forcedeth msi=0 msix=0 >> /etc/rc.local
# echo exit 0 >> /etc/rc.local
# nl=$(grep -n ^script /etc/init/kmod.conf | awk -F":" '{print $1}')
# sed -i "${nl}s/script/script\nexec rmmod forcedeth/" /etc/init/kmod.conf
# echo blacklist forcedeth >> /etc/modprobe.d/blacklist.conf
# apt-get update
# apt-get install nvidia-current
Agora reinicie o computador e estará funcionando.
Fonte: ubuntu 16.04 nao reconhece rede onboard [Ubuntu-BR]
* Tive oportunidade de ter essa placa mãe e funcionou:
Como usuário root:
# sed -i "/exit 0/d" /etc/rc.local
# echo modprobe forcedeth msi=0 msix=0 >> /etc/rc.local
# echo exit 0 >> /etc/rc.local
# nl=$(grep -n ^script /etc/init/kmod.conf | awk -F":" '{print $1}')
# sed -i "${nl}s/script/script\nexec rmmod forcedeth/" /etc/init/kmod.conf
# echo blacklist forcedeth >> /etc/modprobe.d/blacklist.conf
# apt-get update
# apt-get install nvidia-current
Agora reinicie o computador e estará funcionando.
Fonte: ubuntu 16.04 nao reconhece rede onboard [Ubuntu-BR]
Muito bom. É uma boa contribuição a comunidade.
___________________________________________________________