우분투 서버 화면 자동 끄기
2024. 1. 9. 23:48ㆍOS
# systemd 파일 생성
sudo vi /etc/systemd/system/enable-console-blanking.service
-----------------------
[Unit]
Description=Enable virtual console blanking
[Service]
Type=oneshot
Environment=TERM=linux
StandardOutput=tty
TTYPath=/dev/console
ExecStart=/usr/bin/setterm -blank 1
[Install]
WantedBy=multi-user.target
-----------------------
# 권한 설정 활성화
sudo chmod 664 /etc/systemd/system/enable-console-blanking.service
sudo systemctl enable enable-console-blanking.service
# 재부팅
sudo reboot
'OS' 카테고리의 다른 글
Crontab 사용 (0) | 2024.03.01 |
---|---|
우분투 시간 동기화 (0) | 2024.02.04 |
SAMBA 설치 (0) | 2024.01.06 |
ubuntu 파일 공유 (0) | 2023.05.05 |
우분투 VMware network connection: Bridged 작동안하는 경우 (0) | 2023.03.01 |