Systemd is the default service manager in most modern Linux distributions, responsible for managing system services. When you no longer need a custom or third-party service, removing its systemd service file ensures a cleaner and more efficient system. This guide walks you through the process of deleting a systemd service file in Linux.
Before deleting a systemd service file, stop the service to prevent any conflicts.
sudo systemctl stop <service-name>
To check if the service is running:
sudo systemctl status <service-name>
Disabling a service ensures that it doesn’t start automatically on boot.
sudo systemctl disable <service-name>
For a user-specific service, disable it using:
systemctl --user disable <service-name>
Systemd service files are usually stored in one of the following locations:
/etc/systemd/system/
/lib/systemd/system/
~/.config/systemd/user/
To delete a system-wide service file, run:
sudo rm /etc/systemd/system/<service-name>.service
If the service file exists in /lib/systemd/system/, remove it with:
sudo rm /lib/systemd/system/<service-name>.service
For a user-specific service, use:
rm ~/.config/systemd/user/<service-name>.service
After deleting the service file, reload the systemd manager to apply the changes.
sudo systemctl daemon-reload
For user-specific services:
systemctl --user daemon-reload
Run the following command to ensure the service no longer exists:
systemctl status <service-name>
If the service has been completely removed, you should see an error message indicating that the unit file is not found.
Some services create additional configuration or log files. To completely remove all traces, check and delete related files in:
For example, to remove logs and config files:
sudo rm -rf /var/log/<service-name>/
sudo rm -rf /etc/<service-name>/
Deleting a systemd service file in Linux involves stopping and disabling the service, removing its service file, and reloading the systemd daemon. Following these steps ensures a clean removal of unnecessary services.