Não é possível encontrar a interface sem fio da placa mwifiex_usb

1

Eu tenho tentado instalar meu adaptador sem fio por um bom tempo, tenho um Surface Pro I e já desisti de fazer o ndiswrapper funcionar, porque ele diz que ele não pode carregar o driver "mwlu97w8x64", embora eu usei-o antes de dois anos atrás junto com o ndiswrapper também e não tive nenhum problema então estou tentando instalar o firmware correto desta vez, mas a interface do mlan (não wlan) não aparece quando eu faço ip link ou ifconfig não menos ainda iwconfig. Eu já adicionei o firmware para / lib / firmware / mrvl /...

root@rinaldi:/home/rinaldi# modinfo mwifiex_usb
filename:       /lib/modules/3.16.0-4-amd64/kernel/drivers/net/wireless/mwifiex/mwifiex_usb.ko
firmware:       mrvl/usb8897_uapsta.bin
firmware:       mrvl/usb8797_uapsta.bin
license:        GPL v2
version:        1.0
description:    Marvell WiFi-Ex USB Driver version1.0
author:         Marvell International Ltd.
srcversion:     2D6C6069607126D19ADC681
alias:          usb:v1286p2046d*dc*dsc*dp*icFFiscFFipFFin*
alias:          usb:v1286p2045d*dc*dsc*dp*ic*isc*ip*in*
alias:          usb:v1286p2044d*dc*dsc*dp*icFFiscFFipFFin*
alias:          usb:v1286p2043d*dc*dsc*dp*ic*isc*ip*in*
depends:        mwifiex,usbcore
intree:         Y
vermagic:       3.16.0-4-amd64 SMP mod_unload modversions 

/ etc / network / interfaces

root@rinaldi:/home/rinaldi# cat /etc/network/interfaces
# 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
auto mlan0
iface lo inet loopback
iface mlan0 inet manual
#wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp

A placa wireless pode funcionar apenas com o firmware correto instalado? o que o kernel procura para iniciar a placa wireless? Como você procederia?

lsusb

Bus 002 Device 005: ID 045e:0794 Microsoft Corp. 
Bus 002 Device 004: ID 03eb:8209 Atmel Corp. 
Bus 002 Device 003: ID 045e:0799 Microsoft Corp. 
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 045e:0795 Microsoft Corp. 
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 002: ID 05e3:0616 Genesys Logic, Inc. 
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 006: ID 1286:2044 Marvell Semiconductor, Inc. 
Bus 003 Device 005: ID 413c:2107 Dell Computer Corp. 
Bus 003 Device 004: ID 046d:c077 Logitech, Inc. 
Bus 003 Device 007: ID 0bda:8179 Realtek Semiconductor Corp. 
Bus 003 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    
por Rinaldi Segecin 20.03.2016 / 23:13

1 resposta

0

O firmware mais recente pode ajudar

wget http://git.marvell.com/?p=mwifiex-firmware.git;a=blob;f=mrvl/usb8797_uapsta.bin;h=0ce6c4ec307880d34bbef3b6ccd359617914f156;hb=e92f8b3f65443764297b947b1843955d9a65dde7
sudo mv /lib/firmware/mrvl/usb8797_uapsta.bin /lib/firmware/mrvl/usb8797_uapsta.bin.bak
sudo cp ./mrvl_usb8797_uapsta.bin /lib/firmware/mrvl/usb8797_uapsta.bin

Reinicie

    
por 02.04.2016 / 10:42