Wifi não acorda ao usar o Hybrid suspend no Ubuntu 14.04.2

0

Estou tentando usar o Hybrid suspend no Ubuntu 14.04.2. Enquanto o suspender e retomar funciona, o wifi e a rede quebram todas as vezes. Executar /etc/init.d/networking restart ou reiniciar a rede de serviço / start / stop não recupera a rede.

Alguma ideia de como fazer isso funcionar?

lspci | grep -i network
02:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter

uname -a
Linux flex2 3.16.0-31-generic #41~14.04.1-Ubuntu SMP Wed Feb 11 19:30:13 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04.2 LTS"
    
por Ubuntuser 05.03.2015 / 18:58

2 respostas

2

Minha solução é criar um script executável que conecte meu computador ao wifi / lan após a suspensão. O nome e a pasta do script são /etc/systemd/system/net-resume.service , com o seguinte conteúdo:

[Unit]
Description=Local system resume actions
After=suspend.target
[Service]
Type=oneshot
ExecStart=/bin/systemctl restart network-manager.service
[Install]
WantedBy=suspend.target

Em seguida, execute o comando:

sudo systemctl enable net-resume.service
    
por mike 05.08.2016 / 10:01
0

Tente desativar e reative apenas a conexão sem fio conforme descrito aqui: link

Se você quiser fazer isso por meio de comandos, em vez de reiniciar networking , tente reiniciar network-manager .

Eu recebo o mesmo problema que você em 15.04 (aparece após a atualização) em um macbookpro10,1.

    
por beaufils 28.04.2015 / 11:21