지난 몇 시간 동안 진행하지 않고이 작업을 시도했습니다.
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
없어요
어떤 도움이라도 대단히 감사하겠습니다!