Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents

Configuración

Cron jobs are stored in a crontab file by username. These files are stored in Las tareas Cron se almacenan en un archivo crontab por usuario. Este archivo se alamacena en  /var/spool/cron/crontabs or  /var/spool/cron/. These files should not be edited directly. The crontab command should always be used to make changes.Este archivos NO se debe editar directamente. El comando crontab siempre se debe utilizar para realizar cambios.

Puede editar su crontab con el siguiente comandoYour crontab can be edited using the following command:

Code Block
languagetext
$ crontab -e

That command will open the crontab in a text editor where you can make the necessary changes. Saving the changes, and closing the file will install the new crontab.

Este comando abre el crontab en un editor de texto donde realizara los cambios necesarios. Guarde los cambios y cierre el archivo esto instalara el nuevo crontab.

El siguiente comando le permite visualizar los cambios realizados a su crontabThe following command will allow you to view your crontab without making changes:

Code Block
languagetext
$ crontab -l

The following command with remove your crontab entirelyEl siguiente comando remueve totalmente su crontab:

Code Block
languagetext
$ crontab -r

...