Desabilitando a ajuda do adaptador wi-fi interno

0

Então, eu tenho tentado desativar meu adaptador wi-fi interno e estou preso no que outro post no fórum me disse para fazer. Eles disseram

"Unless there is a hardware switch to turn it off, just blacklist the module.

You can find out which module is in use with this:

lspci -nnk | grep -iA2 net

...to blacklist a module, add blacklist module_name to /etc/modprobe.d/blacklist.conf"

Então eu digitei lspci -nnk | grep -iA2 net mas como identifico o adaptador wifi 'module_name'?

Meus resultados de lspci -nnk | grep -iA2 net:

:~$ lspci -nnk | grep -iA2 net
01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 07)
    Subsystem: Lenovo Device [17aa:3971]
    Kernel driver in use: r8169

02:00.0 Network controller [0280]: Qualcomm Atheros AR9285 Wireless Network Adapter (PCI-Express) [168c:002b] (rev 01)
    Subsystem: Lenovo Device [17aa:30a1]
    Kernel driver in use: ath9k
    
por Jake Turnick 13.01.2015 / 23:26

1 resposta

1

Qualcomm Atheros AR9285 Wireless Network Adapter (PCI-Express) [168c:002b] (rev 01) Subsystem: Lenovo Device [17aa:30a1] Kernel driver in use: ath9k

O nome do módulo sem fio é ath9k. Para colocar na lista negra, em vez de editar manualmente um arquivo, vamos pegar o caminho mais fácil. Abra um terminal e faça:

sudo -i
echo "blacklist ath9k"  >>  /etc/modprobe.d/blacklist.conf
modprobe -r ath9k
exit

Pode ser necessário reiniciar.

    
por chili555 13.01.2015 / 23:31