Debian jessie 8.5 não detecta wireless

2

Eu terminei a instalação do Debian Jessie 8.5, mas o sistema não detecta o wireless. Meu wireless esta oculto, tem senha com wpa psk / wpa2 psk e estou usando o ambiente de desktop Xfce.

ip a :

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN group default qlen 1000
    link/ether 28:d2:44:c1:02:85 brd ff:ff:ff:ff:ff:ff

lsusb :

Bus 003 Device 002: ID 8087:8000 Intel Corp. 
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 005: ID 0bda:b728 Realtek Semiconductor Corp. 
Bus 001 Device 004: ID 13d3:5727 IMC Networks 
Bus 001 Device 003: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller
Bus 001 Device 002: ID 062a:4102 Creative Labs 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

lspci :

00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 0b)
00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b)
00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 0b)
00:14.0 USB controller: Intel Corporation 8 Series USB xHCI HC (rev 04)
00:16.0 Communication controller: Intel Corporation 8 Series HECI #0 (rev 04)
00:1b.0 Audio device: Intel Corporation 8 Series HD Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 3 (rev e4)
00:1c.3 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 4 (rev e4)
00:1d.0 USB controller: Intel Corporation 8 Series USB EHCI #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation 8 Series LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 8 Series SMBus Controller (rev 04)
01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 10)
02:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter

lspci -knn | grep Net -A2 :

02:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter [10ec:b723]
    Subsystem: Lenovo Device [17aa:b736]
    Kernel driver in use: rtl8723be
    
por Sona 22.07.2016 / 12:26

1 resposta

2

Você precisa instalar firmware-realtek

Binary firmware for Realtek wired and wireless network adapters

This package contains the binary firmware for some Ethernet adapters with the RTL8111/RTL8168 chips supported by the r8169 driver; and wireless network cards with the RTL8188, RTL8192, RTL8712, RTL8723 and RTL8821 chips supported by the r8192_pci, r8192s_usb, r8712u, rtl8188eu, rtl8192ce, rtl8192cu, rtl8192de, rtl8192se, rtl8723ae, rtl8723au, rtl8723be and rtl8821ae drivers.

O driver necessário é: rtl8723be

1) Conecte-se através de ethernet

Adicione non-free repo ao seu sources.list :

nano /etc/apt/sources.list

adicione as seguintes linhas:

deb http://ftp.debian.org/debian/ jessie main contrib non-free
deb-src http://ftp.debian.org/debian/ jessie main contrib non-free

Atualize e instale os drivers do realtek

apt-get update && apt-get install firmware-realtek

Se a sua conexão continuar desconectando, digite o seguinte comando:

echo "options rtl8723be fwlps=0" | sudo tee /etc/modprobe.d/rtl8723be.conf

2) Sem conexão à internet:

Faça o download de firmware-realtek_0.43_all.deb , usando o extrato do gerenciador de arquivos rtl8723befw.bin de /lib/firmware/rtlwifi/rtl8723befw.bin e copie-o para /lib/firmware/rtlwifi :

cp rtl8723befw.bin /lib/firmware/rtlwifi/

Recarregue o driver:

modprobe -rv rtl8723be
modprobe -v rtl8723be
    
por 23.07.2016 / 18:38

Tags