I'm happily using (after all this time!) the Acer Nitro 5 [AN5] with Ubuntu 20.04 and the power saving script [PSS]. Unfortunately, when using the lowest power mode, the Ethernet interface won't get an IP any more. The Ethernet interface wakes up with a simple command: sudo ip link set enp7s0 up Resources [AN5] Ubuntu … Continue reading Reactivate Linux network interface after standby
Tag: acer nitro 5
Acer Nitro 5 power button broken in Ubuntu 20.04
Update 2023.03.17: a reader of this blog, W0CKY, came up with a much better solution: sudo setkeycodes 55 116 I packaged that into a script: #!/bin/bash if [[ $EUID -ne 0 ]]; then echo re-running as root exec sudo /bin/bash "$0" "$@" else echo rewriting key codes setkeycodes 55 116 fi ... configured sudoers to … Continue reading Acer Nitro 5 power button broken in Ubuntu 20.04