Dear fellows,
I’ve ran into issues trying to delete Sonarr from my system using the following commands:
sudo apt purge sonarr -y --auto-remove
sudo apt purge sonnar
Both don’t work and after looking around the forum more people had questions about this and the replies were to get it all uninstalled manually.
Now I’ve looked at the “install-sonarr.sh” coming from the Sonarr website: Sonarr - Dive in and reverse engineered everything it was programmed to create: (the group ‘media’ can only be removed when it is empty)
sudo systemctl stop sonarr
sudo systemctl disable sonarr.service
sudo systemctl disable --now -q sonarr
sudo rm -rf /etc/systemd/system/sonarr.service
sudo rm -rf /var/lib/sonarr/
sudo deluser sonarr
sudo delgroup media
I hope that helps someone.
Regards,
Crazyquads