Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ルートからubuntuサーバーにcronを設定するのに行き詰まりました。
使用しようとすると:- sudo crontab -e 「root の crontab がありません - 空の 888 を使用しています」というエラーが表示されます。
助けてください。毎分 cron をセットアップする必要があります。
/home/username/hello.sh に以下のコードの hello.sh があるとします。
#!/bin/bash echo "Hello World!!!"
ファイル /etc/cron.d/hellocron を作成し、以下の行を入れます
* * * * * root /home/username/hello.sh
cron は毎分 /home/username/hello.sh を実行します。この例では、文字列 "Hello World!!!" を出力します。毎分。