web-dev-qa-db-ja.com

クロンタブはどこ? Ubuntu 16.04

私はこのビデオからcrontabを使用してジョブを追加する方法を検討しようとしています:

https://www.youtube.com/watch?v=vrPGRE6FV9g

十分簡単で理解できるが、etcにcrontabが見つからない?実際、いくつかのビデオでもcrontabについて言及しているようです。すべてのビデオは古く、Ubuntu 16.04用ではないようです。

それがあれば、どこにありますか?ない場合は、16.04のチュートリアルがありますか?

ありがとう!

編集:すみません、見つけました。 etc /に物理フォルダーを探していましたが、フォルダーではありません!!!皆さんありがとうございます。

5
peteubuntu
Sudo nano /etc/crontab 

... cronjobsを追加できます。基本について説明するコメントが少しあります。また、毎日、毎週、毎月のジョブのメソッドも既に含まれています。


編集:ここにファイルがあります:

 more /etc/crontab 
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

Shell=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user  command
17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
25 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --repor
t /etc/cron.daily )
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --repor
t /etc/cron.weekly )
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --repor
t /etc/cron.monthly )
#
7
Rinzwind