how to uninstall readarr on linux?

BraBraBra@lemmy.world to Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com – 1 points –

Do you just delete it in /opt and /var/lib?

9

This is a piracy community, where people discuss relevant topics. Use Google for simple questions like "how to uninstall programs on Linux"

Please don't use Google. Use some other search engine like Duck Duck Go.

Readarr is piracy related, and I did do that without results.

Just an app. If you're on Debian/Ubuntu/derivatives like Mint and MXLinux, use sudo apt purge <name-of-app> && sudo apt autoremove

Idk but this world is near to end 😔

https://wiki.servarr.com/readarr/installation/linux

Uninstall

To uninstall and purge:

    Warning: This will destroy your application data.

sudo systemctl stop readarr
sudo rm -rf /opt/Readarr
sudo rm -rf /var/lib/readarr
sudo rm -rf /etc/systemd/system/readarr.service
sudo systemctl -q daemon-reload

To uninstall and keep your application data:

sudo systemctl stop readarr
sudo rm -rf /opt/Readarr
sudo rm -rf /etc/systemd/system/readarr.service
sudo systemctl -q daemon-reload

Never just delete stuff from Linux unless you know what you're doing. Always remove it using the method you installed it with.