Press "Enter" to skip to content

[태그:] enable

apt-get 으로 cron 데몬 설치하기

# cron 설치
sudo apt-get update -y
# cron : cron, systemd : systemctl 설치
sudo apt install cron systemd -y

# cron 시작
sudo service cron start

# cron systemctl로 활성화 시키기
sudo systemctl enable cron.service

# cron systemctl 등록 확인하기
sudo systemctl list-unit-files | grep cron
sudo service cron status