Lenovo G50-80 Ubuntu 14.04 Wifi não funciona

1

Boa tarde.

Comprei um Lenovo G50-80 e instalei o Ubuntu 14. Eu tenho um problema com o Wifi, porque funciona apenas por alguns minutos, quando no Windows 8 funciona bem. Eu li vários tópicos sobre isso, mas não consegui resolvê-lo. Eu reinstalei o Ubuntu 14, mas o problema persiste.

EDIT. Saída do comando: lspci -knn | grep Net -A2

03:00.0 Network controller [0280]: Intel Corporation Wireless 3160 [8086:08b4] (rev 93)
    Subsystem: Intel Corporation Dual Band Wireless AC 3160 [8086:8270]
    Kernel driver in use: iwlwifi

Obrigado!

    
por Alejandro 05.10.2015 / 18:56

1 resposta

1

Executar no terminal

sudo tee /etc/modprobe.d/iwlwifi-opt.conf <<< "options iwlwifi 11n_disable=1"

e reinicie.

Isso desativará o modo 802.11n, que funciona mal com muitos adaptadores sem fio Intel.

Se isso não ajudar, você pode tentar este comando

sudo tee /etc/modprobe.d/iwlwifi-opt.conf <<< "options iwlwifi 11n_disable=1 power_save=0 bt_coex_active=0"
    
por Pilot6 05.10.2015 / 19:52