Como fazer o ubuntu procurar redes wifi disponíveis?

0

Estou usando o Ubuntu 12.04. Eu tenho um problema com o meu wifi, mas nem sempre. Meu sistema detecta redes Wi-Fi algumas vezes e as exibe na lista de redes Wi-Fi disponíveis e é capaz de se conectar corretamente. Mas, algumas vezes, ele não detecta nenhuma rede wifi disponível.

Alguém pode me dizer uma maneira de fazer o Ubuntu procurar redes wifi disponíveis?

Aqui está o iwconfig info

ppp0      no wireless extensions.

lo        no wireless extensions.

wwan0     no wireless extensions.

eth1      IEEE 802.11abg  ESSID:off/any  
          Mode:Managed  Access Point: Not-Associated   
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Power Management:off

eth0      no wireless extensions.

Resultado de lspci é

Network controller: Broadcom Corporation BCM4313 802.11b/g/n Wireless LAN Controller (rev 01)
    
por iJade 16.11.2013 / 14:49

3 respostas

0

Abra um terminal. Digite o seguinte:

sudo crontab -e  

Agora digite o seguinte:

* * * * * iwlist eth1 scan  

Salve e saia.

    
por krishna kaanthh 16.11.2013 / 15:38
0

Use isso no terminal

   sudo lsmod | grep ipw2200

Se ele retornar algumas linhas, ele irá garantir que o driver seja carregado perfeitamente ou então você precisa entrar em contato com o Ubuntu Forms Ou então tente isso:

abra o "Synaptic Package Manager" (se você estiver usando o Ubuntu 11.10, instale-o primeiro no cemter de software) e procure por "bcm" desinstalar o pacote "bcm-kernel-source" Certifique-se de que os pacotes "firmware-b43-installer" e "b43-fwcutter" estejam instalados digite no terminal:

cat /etc/modprobe.d/* | egrep '8180|acx|at76|ath|b43|bcm|CX|eth|ipw|irmware|isl|lbtf|orinoco|ndiswrapper|NPE|p54|prism|rtl|rt2|rt3|rt6|rt7|witch|wl' 

(você pode querer copiá-lo até o final se ele não estiver visível corretamente) e ver se o termo ‘blacklist bcm43xx‘ está lá

se estiver, digite cd /etc/modprobe.d/ e, em seguida, sudo gedit blacklist.conf coloque um # na frente da linha: blacklist bcm43xx salve o arquivo (recebi mensagens de erro no terminal sobre não ser possível salvar, mas ele realmente salvou corretamente). reboot

    
por krishna kaanthh 16.11.2013 / 15:48
0

Use iwlist . A página man (na verdade, link ) diz:

wlist.8.gz
Provided by: wireless-tools_30~pre9-8ubuntu1_i386

NAME

       iwlist  -  Get  more  detailed  wireless  information  from  a wireless
       interface

SYNOPSIS

       iwlist [interface] scanning

snip ...

PARAMETERS

       scan[ning]
              Give the list of Access Points and Ad-Hoc cells  in  range,  and
              optionally  a  whole  bunch  of  information  about them (ESSID,
              Quality, Frequency, Mode...). The type of  information  returned
              depends on what the card supports.
              Triggering  scanning  is  a privileged operation (root only) and
              normal users can only read left-over scan results.  By  default,
              the way scanning is done (the scope of the scan) is dependant on
              the card and card settings.
              This command takes optional arguments, however most drivers will
              ignore  those.  The  option essid is used to specify a scan on a
              specific ESSID. With  some  card/driver,  this  enables  to  see
              hidden  networks.  The  option  last does not trigger a scan and
              read left-over scan results.
    
por waltinator 13.01.2016 / 16:44