Flatpak 占用过多存储空间

Flatpak 占用过多存储空间

当我跑步时flatpak list -d --app --runtime

我看到以下内容

… … … Version  Branch Arch   Origin  Installation Ref                                                  Active commit Latest commit Installed size …
… … … 19.08.10 19.08  x86_64 flathub user         org.freedesktop.Platform/x86_64/19.08                893ea4aa41e3  -             694.1 MB       …
…  …          19.08  x86_64 flathub user         org.freedesktop.Platform.GL.default/x86_64/19.08     0d51f4a9d159  -             243.1 MB       …
…  …          1.4    x86_64 flathub user         org.freedesktop.Platform.GL.nvidia-440-82/x86_64/1.4 d144b6da9032  -             984.1 kB       …
…  …          19.08  x86_64 flathub user         org.freedesktop.Platform.VAAPI.Intel/x86_64/19.08    febe88924fa8  -              37.0 MB       …
… … …          2.0    x86_64 flathub user         org.freedesktop.Platform.openh264/x86_64/2.0         15266352ca75  -             773.6 kB       …
… … …          3.36   x86_64 flathub user         org.gnome.Platform/x86_64/3.36                       ad7f022f9489  -             934.5 MB       …
… … …          3.22   x86_64 flathub user         org.gtk.Gtk3theme.Pop-dark/x86_64/3.22               01db4ce9aee6  -               1.6 MB       …

为什么 Flatpak 消耗如此多的存储空间?哪些文件可以安全删除以及如何删除?

我的系统:

OS: Pop! OS 20.04lts
RAM: 8GB
CPU: 英特尔 i7-8750H
GPU: GTX 1050ti

答案1

由于 Flatpak 处于独立的、(大部分)隔离的环境中,因此它们的应用程序使用这些运行时来提供它们所需的库。如果您想查看特定应用程序正在使用什么运行时,请运行此命令(Calibre 的示例):

$ flatpak info com.calibre_ebook.calibre

Calibre - E-book manager

          ID: com.calibre_ebook.calibre
         Ref: app/com.calibre_ebook.calibre/x86_64/stable
        Arch: x86_64
      Branch: stable
     Version: 5.0.1
     License: GPL-3.0
      Origin: flathub
  Collection: org.flathub.Stable
Installation: user
   Installed: 362.9 MB
     Runtime: org.freedesktop.Platform/x86_64/20.08
         Sdk: org.freedesktop.Sdk/x86_64/20.08

      Commit: 9dc73d95de91fd0798c3b7ed431f359edbcbb90ead9c8ce9e2658fd0bc2aa9ef
      Parent: e7491dda0dcfc6f3511d0282493ea45535555a1d3e26c6c36d6ec34c1b5ca482
     Subject: Update calibre-5.0.0-x86_64.txz to 5.0.1 (4bb0279f)
        Date: 2020-09-25 14:36:39 +0000

现在,当您删除不需要的 Flatpak 时,系统会应该还可以清理任何未使用的运行时。要检查这一点,请运行:

$ flatpak uninstall --unused

注意:根据我的经验,最大的运行时是 KDE、Freedesktop(运行时/SDK)和 Gnome。另外,如果您的 / 分区已满,您可以将 flatpaks 切换到 /home 分区。这将要求您添加 flatpak 用户存储库,如下所示:

flatpak remote-add --user flathub https://flathub.org/repo/flathub.flatpakrepo

然后,安装flatpaks就正常了,但是加上开关--user

$ flatpak install --user flathub com.calibre_ebook.calibre

相关内容