Saturday, May 4, 2024
 Popular · Latest · Hot · Upcoming
12
rated 0 times [  12] [ 0]  / answers: 1 / hits: 14780  / 2 Years ago, fri, september 30, 2022, 5:32:58

I installed an application using a command of the following form:


flatpak --user install -y --app --bundle "$DIR/Suphead.flatpak"

I uninstalled it using a command of the following form:


flatpak --user uninstall org.flatpaklinux.Suphead

However, after uninstall, I still see many files on the system associated with the application, files at all of the following sorts of directories:


~/.local/share/flatpak/repo/refs/remotes/org.flatpaklinux.Suphead-origin
~/.local/share/flatpak-linux/Suphead
~/.local/share/flatpak-linux/Suphead/drive_c
~/.var/app/org.flatpaklinux.Suphead

Should Flatpak not remove directories like these and their contents? Should I just do an rm -rf on them?


More From » flatpak

 Answers
2

It's usual for package management tools to leave files in the home directory alone, so that user preferences, etc. are retained on reinstallation. You can choose to delete them if you wish, but I wouldn't expect flatpak (or any other software installation tool) to delete configuration files in my home directory. And that's what ~/.var/app is, looking at the example in the flatpak wiki:



.var/
└── app
└── org.gnome.GEdit
├── data
├── config
└── cache


~/.local/share/flatpak/repo/refs/remotes/org.flatpaklinux.Suphead-origin looks like it's part of flatpak's state, and it could be using it to track it what it had installed and where from (such data is also often kept around after package removal, and anyway they don't occupy much space). From the flatpak wiki:




Flatpak uses OSTree to distribute and manage applications and
runtimes. The repo/ in the above tree is the local OSTree repository.
Flatpak creates the active/ directories of applications and runtimes
as symlinks to OSTree checkouts (in the same directory). Using OSTree
has the advantage that the checkouts are automatically deduped and
share diskspace, since OSTree is using hardlinks and content-based
addressing. OSTree also makes it easy to roll back to an earlier
version, should the need arise.




refs/remotes/org.flatpaklinux.Suphead-origin looks very like something from a Git repo:



$ cat .git/refs/remotes/origin/master
73dad27c1c047c159f0ee22d6627af5bfdf4dbfc


If that is indeed the case, then that file just indicates which commit of the remote source was at the last time you fetched something from there.



If you think flatpak is taking up too much space even after removing an app, check the output of flatpak list -d --app --runtime to see what apps and runtimes are still installed and the space they take.


[#9913] Saturday, October 1, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
pheter

Total Points: 223
Total Questions: 111
Total Answers: 119

Location: Guadeloupe
Member since Sat, Aug 22, 2020
4 Years ago
;