LukeHan 의 잡다한 기술 블로그

Ubuntu 에서 노트북 덮개 닫아도 대기 모드 진입하지 않도록 설정 본문

OS/Linux

Ubuntu 에서 노트북 덮개 닫아도 대기 모드 진입하지 않도록 설정

LukeHan1128 2023. 10. 17. 20:00
반응형

 

  • OS : Ubuntu 22.04 LTS

 

 

sudo vi /etc/systemd/logind.conf

설정을 위해 logind.conf 파일을 연다

 

 

 

 

[Login]
#NAutoVTs=6
#ReserveVT=6
#KillUserProcesses=no
#KillOnlyUsers=
#KillExcludeUsers=root
#InhibitDelayMaxSec=5
#UserStopDelaySec=10
#HandlePowerKey=poweroff
#HandleSuspendKey=suspend
#HandleHibernateKey=hibernate
#HandleLidSwitch=suspend
HandleLidSwitch=ignore
#HandleLidSwitchExternalPower=suspend
#HandleLidSwitchDocked=ignore
#HandleRebootKey=reboot
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
#LidSwitchIgnoreInhibited=yes
#RebootKeyIgnoreInhibited=no
#HoldoffTimeoutSec=30s
#IdleAction=ignore
#IdleActionSec=30min
#RuntimeDirectorySize=10%
#RuntimeDirectoryInodesMax=400k
#RemoveIPC=yes
#InhibitorsMax=8192
#SessionsMax=8192​

위와 같이 HandleLidSwitch 설정을 ignore 로 변경 적용한다

 

 

 

 

sudo systemctl restart systemd-logind.service

위와 같이 입력하여 설정 정보를 시스템에 적용한다

 

 

 

 

 

반응형
Comments