About 2,310,000 results
Open links in new tab
  1. cron - Where is the user crontab stored? - Ask Ubuntu

    If so, you can get a "copy" of your crontab file by doing crontab -l. Pipe that to a file to get a "backup": crontab -l > my-crontab Then you can edit that my-crontab file to add or modify entries, and then …

  2. cron - Verify if crontab works - Ask Ubuntu

    Dec 6, 2011 · Although very rare, sometimes cron stops working properly even though the service is running. Here is how to verify that crond is running and stop/start the service. Using systemctl: …

  3. What is the correct way to edit a crontab file? - Ask Ubuntu

    Apr 16, 2015 · crontab -e lets you edit your user crontab without sudo. The user crontabs are in /var/spool/cron/crontabs which is a directory that cannot be accessed without superuser permission …

  4. How do I set up a Cron job? - Ask Ubuntu

    Aug 16, 2010 · I want to schedule a task to run on a regular basis and have heard that Cron is the way to do this. How do I add Cron jobs in Ubuntu?

  5. How to remove or delete single cron job using linux command?

    crontab -r This removes the entire crontab file for current user so be careful if you've got other cron jobs listed in there! Add/Edit/Delete cron job (s) Your user's cron file crontab -e Specific user's cron file …

  6. cron - Why crontab scripts are not working? - Ask Ubuntu

    Jan 24, 2011 · Often, crontab scripts are not executed on schedule or as expected. There are numerous reasons for that: wrong crontab notation permissions problem environment variables This community …

  7. cron - How to activate this crontab? - Ask Ubuntu

    Actually, the best way to use crontab is by using crontab itself: crontab -l # list current crontab entries crontab -e # edit the cron table As soon as you finish editing the crontab (via 'crontab -e'), it is …

  8. scheduled - How can I schedule a nightly reboot? - Ask Ubuntu

    sudo crontab -e so you can edit the crontab for the root user. If you feel better doing it graphically you can install from the Software Center gnome-schedule. If you want to modify the gnome-schedule for …

  9. cron - Running two commands in crontab - Ask Ubuntu

    Mar 7, 2013 · 10 I have this line in my crontab file */1 * * * * espeak 'foo' && espeak 'bar' But only half of it, first command gets executed every minute. While when I write this in the terminal it works like a …

  10. How to set up a root cron job properly - Ask Ubuntu

    Feb 12, 2014 · I tried to set up a root cron job to run a Bash script as root, to run at minute 7,37, every hour, every day of month, every month. This script is located in /usr/bin and named tunlrupdate.sh. It …