Unix/Arch Linux
노트북 덮개를 덮어도 화면 안 꺼지게 하기
ForceCore
2018. 8. 29. 22:20
남는 노트북 하나를 서버로 굴리기 시작했다. 운영체제는 당연히 (?) Arch Linux.
하지만 덮개를 닫아야 화면도 꺼지고, 키보드에 먼지도 안 들어갈텐데...
/etc/systemd/logind.conf 를 연다.
HandleLidSwitch 어쩌구 하는걸 다 무시하라고 ignore로 둔다.
[Login]
#NAutoVTs=6
#ReserveVT=6
#KillUserProcesses=no
#KillOnlyUsers=
#KillExcludeUsers=root
#InhibitDelayMaxSec=5
#HandlePowerKey=poweroff
#HandleSuspendKey=suspend
#HandleHibernateKey=hibernate
HandleLidSwitch=ignore
HandleLidSwitchExternalPower=ignore
HandleLidSwitchDocked=ignore
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
#LidSwitchIgnoreInhibited=yes
#HoldoffTimeoutSec=30s
#IdleAction=ignore
#IdleActionSec=30min
#RuntimeDirectorySize=10%
#RemoveIPC=yes
#InhibitorsMax=8192
#SessionsMax=8192
요렇게 된다.
# systemctl restart systemd-logind
로 적용을 해주면 끝.