> For the complete documentation index, see [llms.txt](https://docs.lightningatm.me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.lightningatm.me/faq-and-common-problems/starting-automatically.md).

# Starting Automatically

## 🚀 Starting the ATM automatically

If you want that the ATM software starts automatically, every time you boot the Raspberry Pi, you can do this with the systemd file that is part of the software files.

In order to activate the daemon, you first have to copy the file into the right folder on your Rasperry Pi 🍓 and then enable the daemon with these commands:

```
cd ~/LightningATM
sudo cp LightningATM.service /etc/systemd/system/LightningATM.service
sudo systemctl enable LightningATM.service
```

You can check it the daemon is up and running as well as check the log file with these commands:

```
# With this command you can check if it is active and running
sudo systemctl status LightningATM.service

# With this command you can check the log/debug file for errors
tail -f ~/.lightningATM/debug.log
```
