Skip to content

Instantly share code, notes, and snippets.

@m0zgen
Created April 2, 2024 13:14
Show Gist options
  • Save m0zgen/208fdbced1fa5a3cba2a4fdcd0295d8f to your computer and use it in GitHub Desktop.
Save m0zgen/208fdbced1fa5a3cba2a4fdcd0295d8f to your computer and use it in GitHub Desktop.
remove systemd services
# Reference: https://superuser.com/questions/513159/how-to-remove-systemd-services
systemctl stop [servicename]
systemctl disable [servicename]
rm /etc/systemd/system/[servicename]
rm /etc/systemd/system/[servicename] # and symlinks that might be related
rm /usr/lib/systemd/system/[servicename]
rm /usr/lib/systemd/system/[servicename] # and symlinks that might be related
systemctl daemon-reload
systemctl reset-failed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment