Is there a GUI tool for managing systemd on Ubuntu 18.04 (Bionic Beaver)?
Solution 1:
I'm surprised no one has mentioned chkservice yet. A curses tool for enabling,disabling, and starting/stopping systemd units. It's even in the usual apt repo, so you can just sudo apt install chkservice
.
Solution 2:
I wrote a Lua + whiptail script that can display, stop, and disable Systemd units. The script is here:
https://github.com/mpbcode/systemctl-ui
Solution 3:
I'm not aware of one. It doesn't get much faster than than the CLI commands though:
systemctl status
systemctl stop some-service
systemctl disable some-service