Networkmanager não mostra Wifi, nem conexão ethernet adequada

0

Eu instalei o Ubuntu 16.04 hoje por meio de instalação mínima. No começo, minha rede estava ok (depois de instalar o network-manager ), mas agora não tenho internet. Eu só fiz algumas temáticas e instalei alguns aplicativos, não mexi na minha rede. Quando eu abro meu nm-applet eu vejo isso:

Apósumapequenapesquisa,conseguiqueminhaethernetfuncionasse,editando/etc/NetworkManager/NetworkManager.conf(managed=true)

No entanto, minhas redes sem fio ainda estão indisponíveis e a ethernet não tem o nome correto.

Alguém sabe o que pode ter corrido mal e como posso corrigir isso?

Saídas

ifconfig -a

enp1s0    Link encap:Ethernet  HWaddr 98:29:a6:09:43:7f  
          inet addr:192.168.14.114  Bcast:192.168.14.255  Mask:255.255.255.0
          inet6 addr: fd40:8668:4fd2:0:a2ed:73e9:6ae0:7113/64 Scope:Global
          inet6 addr: fe80::6345:48a5:9afe:87eb/64 Scope:Link
          inet6 addr: fd40:8668:4fd2:0:11b7:96f8:d04:559d/64 Scope:Global
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:4323 errors:0 dropped:0 overruns:0 frame:0
          TX packets:3969 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:2702203 (2.7 MB)  TX bytes:625937 (625.9 KB)

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:65536  Metric:1
          RX packets:436 errors:0 dropped:0 overruns:0 frame:0
          TX packets:436 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1 
          RX bytes:40921 (40.9 KB)  TX bytes:40921 (40.9 KB)

cat /etc/network/interfaces (não tocou nisso desde a instalação):

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto enp1s0
iface enp1s0 inet dhcp
# This is an autoconfigured IPv6 interface
iface enp1s0 inet6 auto
    
por Oded Sayar 18.01.2018 / 23:01

1 resposta

1

Para que o Network Manager assuma todas as interfaces corretamente, remova as configurações da ethernet em /etc/network/interfaces desta forma:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

Em seguida, retorne o NetworkManager.conf ao seu estado padrão, onde managed = false.

Por fim, reinicie o Network Manager:

sudo service network-manager restart

Pode ser necessário reiniciar.

Quanto à rede sem fio, sugiro que você inicie uma nova pergunta e inclua o relatório de diagnóstico, conforme descrito aqui. Meu wireless Conexão WiFi não funciona. Quais informações são necessárias para diagnosticar o problema?

    
por chili555 19.01.2018 / 17:06