Maxy.fr

Raspberry Pi: Scheduling Regular Automatic Reboots

Sometimes, you may need to make your Raspberry Pi automatically reboot regularly, for example, once a day at midnight. To achieve this, we'll use a Unix program called "Cron" that allows for the automatic execution of commands.

Adding a Cron Task:

First, you need to be connected to your Raspberry Pi via SSH. If you're not already connected, please do so.

  • Enter the following command: "sudo nano /etc/crontab -e".

This command allows you to edit the file containing the list of tasks.

The lines are structured as follows:

minute hour day month day-of-week user command

So, if you want to perform a Raspberry Pi reboot every day at 1:15 AM, you should add the following line:

15 1 * * * root reboot

You'll notice that we use "*" for fields like "day" to indicate that the task should be executed every day.

Finally, press CTRL + X to exit, then save by pressing the "O" or "Y" key (depending on your system's language).

Catégories : Linux, Raspberry Pi

Par Guillaume le 14/04/2014 à 01:34

Partager l'article :

Articles similaires

Comment résoudre le message Possible attack detected dans ISPConfig ?

Lorsque vous gérez un serveur web avec ISPConfig, il peut arriver que vous rencontriez le message d'avertissement "Possible attack detected. This action has been logged." sur l'interface web. Rendant son accès impossible. Cette alerte peut être déclenchée par...

Postfix : Régler le problème d'envoi d'email vers Gmail à cause d'IPV6

Si vous n'arrivez pas à envoyer d'email vers les adresses gmail depuis votre serveur et que vous obtenez l'erreur suivante, il s'agit probablement d'un problème de configuration si vous avez une IPV4 et une IPV6. Voici l'erreur en question : Our system has detected that this message...

Démarrer automatiquement Node.JS au démarrage de son serveur

Si vous avez déjà fait des programmes en utilisant Node.JS, vous êtes surement déjà tombé sur ce problème : Les scripts Node.JS ne se relance pas automatiquement lorsque l'on redémarre son serveur. Il faut donc s'y connecter manuellement pour...