WIFI bloqueado - Bloqueios na lista negra WIFI para arranque duplo

0

Eu dou boot no Linux e no Windows no meu computador. Eu fui recentemente do Linux Mint para o Ubuntu. O WIFI não é instantaneamente compatível com o Linux.  O que costumava trabalhar no Linux Mint (que, no meu conhecimento, é baseado no Ubuntu) é escrever "blacklist acer_wmi" para   /etc/modprobe.d/blacklist config .

No entanto, agora que eu executo este comando no Ubuntu ele bloqueia o WIFI para todos os sistemas operacionais: es. Ou seja, o Ubuntu não encontra redes sem fio, a lista de rfkill lista apenas o Bluetooth e, no Windows, a "opção" de WIFI está em cinza. Corrigir o arquivo mencionado acima não ajuda. Na verdade, eu tenho que formatar o disco rígido e inicializar no modo herdado para que o computador encontre o WIFI novamente.

Eu não tenho ideia de como começar a solucionar esse problema.

Qualquer ajuda é apreciada!

[EDITAR]

lspci -knn | grep Net -A4 dá o seguinte

09:00.0 Network controller [0280]: Intel Corporation Wireless 7260 [8086:08b1] (rev c3)
    DeviceName: Intel Stone Peak 2 7260 ac 2x2 + BT4 LE Combo
    Subsystem: Intel Corporation Dual Band Wireless-AC 7260 [8086:c070]
    Kernel driver in use: iwlwifi
    Kernel modules: iwlwifi

dmesg | grep iwl

[    7.682179] iwlwifi 0000:09:00.0: Direct firmware load for iwlwifi-7260-17.ucode failed with error -2
[    7.687544] iwlwifi 0000:09:00.0: loaded firmware version 16.242414.0 op_mode iwlmvm
[    7.764971] iwlwifi 0000:09:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
[    7.765045] iwlwifi 0000:09:00.0: L1 Enabled - LTR Enabled
[    7.765352] iwlwifi 0000:09:00.0: L1 Enabled - LTR Enabled
[    7.794846] iwlwifi 0000:09:00.0: RF_KILL bit toggled to disable radio.
[    7.798595] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    7.800784] iwlwifi 0000:09:00.0 wlo1: renamed from wlan0

rfkill list (se eu listar o acer na lista negra, somente a entrada do blutooth permanecerá)

0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
1: acer-wireless: Wireless LAN
    Soft blocked: yes
    Hard blocked: no
2: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: yes

blacklist.conf

# This file lists those modules which we don't want to be loaded by
# alias expansion, usually so some other driver will be loaded for the
# device instead.

# evbug is a debug tool that should be loaded explicitly
blacklist evbug

# these drivers are very simple, the HID drivers are usually preferred
blacklist usbmouse
blacklist usbkbd

# replaced by e100
blacklist eepro100

# replaced by tulip
blacklist de4x5

# causes no end of confusion by creating unexpected network interfaces
blacklist eth1394

# snd_intel8x0m can interfere with snd_intel8x0, doesn't seem to support much
# hardware on its own (Ubuntu bug #2011, #6810)
blacklist snd_intel8x0m

# Conflicts with dvb driver (which is better for handling this device)
blacklist snd_aw2

# causes failure to suspend on HP compaq nc6000 (Ubuntu: #10306)
blacklist i2c_i801

# replaced by p54pci
blacklist prism54

# replaced by b43 and ssb.
blacklist bcm43xx

# most apps now use garmin usb driver directly (Ubuntu: #114565)
blacklist garmin_gps

# replaced by asus-laptop (Ubuntu: #184721)
blacklist asus_acpi

# low-quality, just noise when being used for sound playback, causes
# hangs at desktop session start (Ubuntu: #246969)
blacklist snd_pcsp

# ugly and loud noise, getting on everyone's nerves; this should be done by a
# nice pulseaudio bing (Ubuntu: #77010)
blacklist pcspkr

# EDAC driver for amd76x clashes with the agp driver preventing the aperture
# from being initialised (Ubuntu: #297750). Blacklist so that the driver
# continues to build and is installable for the few cases where its
# really needed.
blacklist amd76x_edac

dmesg | grep iwl

[    7.711214] iwlwifi 0000:09:00.0: Direct firmware load for iwlwifi-7260-17.ucode failed with error -2
[    7.716552] iwlwifi 0000:09:00.0: loaded firmware version 16.242414.0 op_mode iwlmvm
[    7.742759] iwlwifi 0000:09:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
[    7.742858] iwlwifi 0000:09:00.0: L1 Enabled - LTR Enabled
[    7.743103] iwlwifi 0000:09:00.0: RF_KILL bit toggled to disable radio.
[    7.743149] iwlwifi 0000:09:00.0: L1 Enabled - LTR Enabled
[    7.777035] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    7.793695] iwlwifi 0000:09:00.0 wlo1: renamed from wlan0

lista de tarefas

0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
1: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: yes
    
por V.Vocor 12.11.2016 / 20:18

1 resposta

0

Você pode corrigir isso executando

sudo tee /etc/modprobe.d/blacklist-acer-wmi.conf <<< "blacklist acer_wmi"

Reinicie depois de fazer isso.

Isso criará um arquivo com essa configuração. Como alternativa, você pode adicionar uma linha ao arquivo blacklist.conf .

Você também pode precisar redefinir o BIOS para os padrões.

    
por Pilot6 12.11.2016 / 21:13