Ubuntu 12.10 - gerente de rede não listando redes sem fio

7

Recentemente instalei o Ubuntu 12.10 no meu laptop (inicialização dupla com o Windows 7). Não tive nenhum problema em acessar minha rede sem fio doméstica até hoje. De repente, o gerente de rede não parece estar pegando nenhuma rede sem fio. O adaptador sem fio do meu laptop está ligado, posso conectar quando estou usando minha partição do Windows 7 e todos os outros dispositivos da minha casa podem se conectar. Por que a conexão sem fio cairia assim? Eu posso postar os resultados de qualquer comando que eu deveria executar se isso ajudasse.

EDIT: aqui está a informação adicional solicitada:

sudo uname -a
Linux richard-HP-G62-Notebook-PC 3.5.0-18-generic #29-Ubuntu SMP Fri Oct 19 10:26:51 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux

sudo lspci
00:00.0 Host bridge: Intel Corporation Core Processor DRAM Controller (rev 02)
00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 02)
00:16.0 Communication controller: Intel Corporation 5 Series/3400 Series Chipset HECI Controller (rev 06)
00:1a.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05)
00:1b.0 Audio device: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 05)
00:1c.0 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 (rev 05)
00:1c.2 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 3 (rev 05)
00:1d.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev a5)
00:1f.0 ISA bridge: Intel Corporation Mobile 5 Series Chipset LPC Interface Controller (rev 05)
00:1f.2 SATA controller: Intel Corporation 5 Series/3400 Series Chipset 4 port SATA AHCI Controller (rev 05)
00:1f.3 SMBus: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 05)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 02)
03:00.0 Network controller: Broadcom Corporation BCM4313 802.11b/g/n Wireless LAN Controller (rev 01)
7f:00.0 Host bridge: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers (rev 05)
7f:00.1 Host bridge: Intel Corporation Core Processor QuickPath Architecture System Address Decoder (rev 05)
7f:02.0 Host bridge: Intel Corporation Core Processor QPI Link 0 (rev 05)
7f:02.1 Host bridge: Intel Corporation Core Processor QPI Physical 0 (rev 05)
7f:02.2 Host bridge: Intel Corporation Core Processor Reserved (rev 05)
7f:02.3 Host bridge: Intel Corporation Core Processor Reserved (rev 05)

sudo ifconfig

eth0      Link encap:Ethernet  HWaddr 3c:4a:92:00:aa:66  
          inet addr:192.168.0.114  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::3e4a:92ff:fe00:aa66/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:58290 errors:0 dropped:0 overruns:0 frame:0
          TX packets:3475 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:7592666 (7.5 MB)  TX bytes:620983 (620.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:16436  Metric:1
          RX packets:3618 errors:0 dropped:0 overruns:0 frame:0
          TX packets:3618 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:590058 (590.0 KB)  TX bytes:590058 (590.0 KB
    
por Richard Stokes 06.11.2012 / 21:26

2 respostas

10

Faça o comando:

sudo gedit /etc/NetworkManager/NetworkManager.conf

Isso abrirá esse arquivo em um editor de texto. Altere a linha que tem managed= para:

managed=true

Salve e feche o arquivo e faça:

sudo killall NetworkManager 

Faça o logout e faça login novamente.

    
por user85086 06.11.2012 / 21:40
3

No meu caso, depois de seguir a outra resposta, vi que agora mostrava device not ready após a reinicialização.

Veja o que fiz para corrigir isso:

sudo gedit /etc/network/interfaces e recebi um arquivo contendo isso:

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

#The loopback network interface
auto lo
iface lo inet loopback

#The primary network interface
auto wlan0
iface wlan0 inet dhcp
        wpa-ssid Wifi Name
        wpa-psk  Wifi Pasword

Eu deletei tudo abaixo de # The primary network interface e, depois de uma reinicialização, tive redes sem fio disponíveis novamente.

    
por conman253 14.09.2013 / 07:16