A conexão sem fio é desativada por meio de troca de hardware. Wifi não funciona! (hard bloqueado: sim, soft bloqueado: não, hp pavillion g6 2237, Ubuntu 12.04)?

1

Eu instalei o Ubuntu 12.04 ao lado do Windows 8 com a opção de inicialização dupla.

Sem fio desativado por switch de hardware.

Como ligar o WiFi? Eu tentei seguir os comandos.

gaurav@gaurav-HP-Pavilion-g6-Notebook-PC:~$ lsusb
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 003 Device 002: ID 13ba:0017 Unknown PS/2 Keyboard+Mouse Adapter
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 003: ID 1bcf:2c1e Sunplus Innovation Technology Inc.

>gaurav@gaurav-HP-Pavilion-g6-Notebook-PC:~$ lspci  
>00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family DRAM   Controller (rev 09)  
>00:01.0 PCI bridge: Intel Corporation Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port (rev 09)  
>00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor  Family Integrated Graphics Controller (rev 09)  
>00:14.0 USB controller: Intel Corporation Panther Point USB xHCI Host Controller (rev 04)  
>00:16.0 Communication controller: Intel Corporation Panther Point MEI Controller #1 (rev 04)  
>00:1a.0 USB controller: Intel Corporation Panther Point USB Enhanced Host Controller #2 (rev 04)  
>00:1b.0 Audio device: Intel Corporation Panther Point High Definition Audio Controller (rev 04)  
>00:1c.0 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 1 (rev c4)  
>00:1c.1 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 2 (rev c4)  
>00:1c.2 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 3 (rev c4)
00:1d.0 USB controller: Intel Corporation Panther Point USB Enhanced Host Controller #1 (rev 04)  
>00:1f.0 ISA bridge: Intel Corporation Panther Point LPC Controller (rev 04)  
>00:1f.2 SATA controller: Intel Corporation Panther Point 6 port SATA Controller [AHCI mode] (rev 04)  
>00:1f.3 SMBus: Intel Corporation Panther Point SMBus Controller (rev 04)  
>01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Thames XT/GL [Radeon HD 7600M Series]   
>07:00.0 Network controller: Ralink corp. Device 3290   
>07:00.1 Bluetooth: Ralink corp. Device 3298 
>08:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 05)    
>09:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. Device 5229 (rev 01)  

>gaurav@gaurav-HP-Pavilion-g6-Notebook-PC:~$ sudo rfkill unblock all  
>gaurav@gaurav-HP-Pavilion-g6-Notebook-PC:~$ rfkill list all  
>0: phy0: Wireless LAN  
>Soft blocked: no  
>Hard blocked: yes  

cartão sem fio

07:00.0 Network controller: Ralink corp. RT3290 Wireless 802.11n 1T/1R PCIe

    
por user280956 15.05.2014 / 22:15

1 resposta

0

Instale todas as ferramentas de compilação necessárias no início e baixe o driver mais recente de seu repositório git: (EXEMPLO DO TL-WN725N)

$$ sudo apt-get install build-essential linux-headers-generic git

$$ mkdir ~/RTL8188EU

$$ cd ~/RTL8188EU

$$ git clone git://github.com/lwfinger/rtl8188eu.git

Depois, o driver pode ser compilado e instalado:

Entre na pasta e execute os seguintes comandos.

$$ make
$$ sudo make install

O novo módulo do kernel pode ser carregado via modprobe e pode ser instalado em todo o sistema para carregamento automático:

$$ sudo depmod -a
$$ sudo update-initramfs -u
$$ sudo modprobe 8188eu

(inicialização automática :) Para ativar o módulo em cada inicialização, adicione seu módulo a / etc / modules

$$ echo 8188eu >> /etc/modules

Executar comando

$$ lspci -v

e pesquise seu cartão Wi-Fi embutido ...

03: 00.0 Controlador de rede: Intel Corporation WiFi Link 5100     Subsistema: Intel Corporation WiFi Link 5100 AGN     Bandeiras: mestre de barramento, devsel rápido, latência 0, IRQ 47     Memória em d6500000 (64 bits, não pré-cabível) [tamanho = 8K]     Recursos: [c8] Power Management versão 3     Recursos: [d0] MSI: Ativar + Contar = 1/1 Maskable - 64bit +     Recursos: [e0] Express Endpoint, MSI 00     Recursos: [100] Relatório avançado de erros     Recursos: [140] Número de série do dispositivo 00-24-d6-ff-ff-3e-5e-a4     Driver do kernel em uso: iwlwifi

Agora bloqueie esse cartão ....

$$ sudo echo "blacklist iwlwifi" >> /etc/modprobe.d/blacklist.conf

Agora corra

$$ lsmod | grep sony

substitua sony pelo nome da empresa do seu laptop ....

Bloqueie seu laptop (como para o sony vaio é "sony_laptop" ....

$$ sudo echo "blacklist sony_laptop" >> /etc/modprobe.d/blacklist.conf

FEITO .. !!!

Agora reinicie ... Você será capaz de executar o seu adaptador wi-fi, mesmo se o seu interruptor sem fio estiver desligado .... !!

    
por Nirav Patel 06.02.2015 / 15:45