Wireless off after suspending

From украл to украдите, when I обобщает from suspend my computer, the networking won't work (happens on my laptop too, both running 14.04).
The wireless icon located in the угол looks like networking unable, and when I click on it, I get в very limited options меню.
One of the options is 'enable networking' but when I click on it, nothing happens (although it is checked).

I saw in other questions that the wireless-network card turns of when suspending and maybe it just won't turn on. If this is the вступил в брак, how to turn it on?

0
задан 16 December 2015 в 13:20

1 ответ

После комментариев выше предложения, связанного Tzahi Leh, мне сохранили следующий сценарий как /etc/pm/sleep.d/30_wakeup и исполняемый файл, который, кажется, решает вопрос. Предыдущие части сценария существовали и были взяты от этого поток для проблем динамика и Bluetooth, известных в Ubuntu 14.04, но только в недавнем обновлении, я должен был добавить nmcli строка:

#!/bin/bash

case "$1" in
suspend_hybrid|hibernate|suspend)
    # executed on suspend
    echo "Going to $1 at $(date)" >> /Data/sleep_log.txt
    rfkill block bluetooth
    ;;
thaw|resume) 
    # executed on resume
    # restart wireless, just in case
    restart network-manager > /dev/null
    # to resolve new issue, 27 Dec 2015 via: http://askubuntu.com/questions/452826/wireless-networking-not-working-after-resume-in-ubuntu-14-04?rq=1
    nmcli nm sleep false

    #wake up the speakers
    hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
    sleep 1
    hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
    sleep 1
    hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
    echo "waking up from $1 at $(date)" >> /Data/sleep_log.txt

    #bluetooth
    rfkill unblock bluetooth
    ;;
*)
    ;;
esac
0
ответ дан 30 September 2019 в 01:13

Другие вопросы по тегам:

Похожие вопросы: