mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-01 23:04:15 +02:00
25 lines
424 B
Markdown
25 lines
424 B
Markdown
# Administration Tasks
|
|
|
|
## Debug Instructions
|
|
|
|
### Live Monitoring
|
|
|
|
To track what the service is doing, execute one of the following commands:
|
|
|
|
#### Using systemctl
|
|
|
|
```bash
|
|
watch -n2 "systemctl status backup-remote-to-local.cymais.service"
|
|
```
|
|
|
|
#### Using journalctl
|
|
|
|
```bash
|
|
journalctl -fu backup-remote-to-local.cymais.service
|
|
```
|
|
|
|
### Viewing History
|
|
|
|
```bash
|
|
sudo journalctl -u backup-remote-to-local.cymais.service
|
|
``` |