私はこれを最後の数時間試みて、何の進歩もありませんでした。
Ubuntu 16.04を実行していますが、ログイン画面でスリープ/サスペンドを無効にして(ユーザーがログインする前に)、ディスプレイがアクティブなままになるようにします。一時停止/スリープは5分後に始まります-どこにも見つからないような設定です。
私が試したこと:
GUI
両方の(すべての)ユーザーに対して完了:
- 力の下で決して中断しないでください
- 明るさとロックで画面をオフにしないでください。
ターミナル
gsettings set org.gnome.desktop.session idle-delay 0
sudo /bin/systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
xset s noblank
xset s off
xset dpms force off
xset -dpms
crontab -e:
追加された
@reboot sudo /bin/systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
@reboot /usr/bin/xset s noblank
@reboot /usr/bin/xset s off
@reboot /usr/bin/xset dpms force off
@reboot /usr/bin/xset -dpms
dconf org.gnome.settings-daemon.plugins.power
critical-battery-action nothing
idle-dim false
lid-close-ac-action nothing
lid-close-battery-action nothing
sleep-inactive-ac-timeout 0
sleep-inactive-ac-type nothing
sleep-inactive-battery-timeout 0
sleep-inactive-battery-type nothing
time-critical 36000
time-low 36000
(コンピューターにはふたもバッテリーもありません)
sudo gedit /etc/X11/xorg.conf
追加されました
Section "ServerFlags"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
EndSection
カフェイン
追加されました
@reboot /usr/bin/caffeine &
crontab。同じことをすることも考えました
@reboot /usr/bin/caffeine -t 36000
だが
caffeine -t 36000
戻り値
usage: caffeinate [-h] [-V] COMMAND [ARGUMENT [ARGUMENT ...]]
caffeinate: error: unrecognized arguments: -t
ACPI
それを持っていない。
どんな助けでも大歓迎です!