Is there any option that allow watching the status of a systemd service in real time with systemctl
What I actually do:
systemctl status tor
For example:
systemctl watch tor
Is there any option that allow watching the status of a systemd service in real time with systemctl
What I actually do:
systemctl status tor
For example:
systemctl watch tor
You could use the watch command to watch the output of systemctl status tor:
watch systemctl status tor
You can also follow the systemd logs for the service, which may also be useful:
journalctl -u tor -f