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
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!
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.
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.
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
How To Get Your Domain Unblocked From Facebook
How To Find A String In a Directory of Files Using Linux