How can I manage and remove apps installed outside of the app store on Linux?

0
4
Asked By CreativeCactus42 On

I'm trying to figure out how to manage files and applications I've downloaded and installed manually on my Linux system. When I install something like the Blender benchmark or DaVinci Resolve directly from their websites, I'm not sure where all the files end up or how to clean them up afterwards. For instance, on Windows, I could find programs in 'Program Files' and use tools like Revo Uninstaller to remove them thoroughly. But in Linux, especially with the filesystem seeming a bit chaotic, I'm lost. Where can I find these manually installed files, and what's the best way to update or remove them? Thanks for any help!

4 Answers

Answered By TechyTurtle77 On

Most installed application data can be found under `~/.local/share`, while configuration files are usually in `~/.config`. This is if you didn’t use root privileges during installation. It's a good starting point to look for the files you need!

Answered By CuriousKoala56 On

If you’re dealing with AppImage files, consider using an application like Gear Lever to manage them. It helps with launching and creating shortcuts, so you don't have to dig into the filesystem yourself.

Answered By RandomRaccoon99 On

It really depends on how you installed the apps! If you’re using a .run file for something like DaVinci Resolve, it installs a bit differently than apps that are just executables like the Blender benchmark. It's essential to know how you installed them first because that affects where those files end up.

Answered By LinuxWizard88 On

You can use the terminal to locate almost anything on your system with the commands `which` and `whereis`. For example, if you run `which resolve`, it will show you where the executable is located. Just be careful deleting files manually, as it can cause issues! Keeping track of where things are installed can really help with managing your Linux setup better.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.