Linux 절전모드해제 (Linux Disable sleep mode)
2023. 11. 6. 12:38ㆍIT System Engineer
# Linux Disable sleep mode
# Status
sudo systemctl status sleep.target suspend.traget hibernate.target
# 절전모드 비활성화
sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
# 상태확인
sudo systemctl status sleep.target suspend.target hibernate.target hybrid-sleep.target
# 절전모드 활성화
sudo systemctl unmask sleep.target suspend.target hibernate.target hybrid-sleep.target
'IT System Engineer' 카테고리의 다른 글
Linux Disk 확장/증설 (Linux Disk Extension) (0) | 2023.11.06 |
---|---|
Linux OS Golden Image ISO 생성 (Create Linux OS Golden Image ISO) (0) | 2023.11.06 |
Linux TCP/UDP Port 확인 (Linux Opened TCP/UDP Port checking) (0) | 2023.11.06 |
Linux multiple Gateway 설정 (Linux multiple gateway settings) (0) | 2023.11.06 |
Linux Teaming 설정 (Linux Teaming Configuration) (0) | 2023.11.06 |