我在驱动器空间相当有限的 Makbook Air 上运行 Kubuntu。Snaps 仅占用 2.8 GB,但 1 个被两个gnome
包占用。他们甚至在 Kubuntu 上做什么?
snap list
Name Version Rev Tracking Publisher Notes
bare 1.0 5 latest/stable canonical✓ base
core18 20221103 2632 latest/stable canonical✓ base
core20 20221027 1695 latest/stable canonical✓ base
core22 20220902 310 latest/stable canonical✓ base
cups 2.4.2-4 836 latest/stable openprinting✓ -
gnome-3-38-2004 0+git.6f39565 119 latest/stable canonical✓ -
gnome-42-2204 0+git.c271a86 44 latest/stable canonical✓ -
gtk-common-themes 0.1-81-g442e511 1535 latest/stable/… canonical✓ -
kde-frameworks-5-98-qt-5-15-6-core20 5.98.0 9 latest/stable kde✓ -
kde-frameworks-5-core18 5.61.0 32 latest/stable kde✓ -
onlyoffice-desktopeditors 7.2.1 133 latest/stable onlyoffice✓ -
scantailor-advanced 1.0.16 3 latest/stable ppd -
snapd 2.57.6 17883 latest/stable canonical✓ snapd
ls -lh /var/lib/snapd/snaps/
total 2,8G
-rw------- 1 root root 4,0K avril 19 2022 bare_5.snap
-rw------- 1 root root 56M nov. 5 13:27 core18_2620.snap
-rw------- 1 root root 56M nov. 22 08:42 core18_2632.snap
-rw------- 1 root root 64M nov. 1 19:48 core20_1634.snap
-rw------- 1 root root 64M nov. 7 19:28 core20_1695.snap
-rw------- 2 root root 71M oct. 1 22:21 core22_275.snap
-rw------- 1 root root 73M oct. 21 21:42 core22_310.snap
-rw------- 2 root root 56M oct. 1 22:21 cups_803.snap
-rw------- 1 root root 56M oct. 22 21:56 cups_836.snap
-rw------- 2 root root 347M oct. 11 17:49 gnome-3-38-2004_119.snap
-rw------- 2 root root 447M nov. 25 17:26 gnome-42-2204_44.snap
-rw------- 1 root root 82M avril 19 2022 gtk-common-themes_1534.snap
-rw------- 1 root root 92M juil. 25 16:42 gtk-common-themes_1535.snap
-rw------- 2 root root 438M nov. 24 09:20 kde-frameworks-5-98-qt-5-15-6-core20_9.snap
-rw------- 2 root root 261M oct. 5 21:57 kde-frameworks-5-core18_32.snap
-rw------- 2 root root 607M nov. 25 14:14 onlyoffice-desktopeditors_133.snap
drwxr-xr-x 2 root root 4,0K avril 8 2022 partial
-rw------- 2 root root 3,2M oct. 5 21:57 scantailor-advanced_3.snap
-rw------- 1 root root 50M nov. 29 09:55 snapd_17883.snap
这里说可以安全地删除未列出的项目(在该命令之后),但列出的项目是强制性的。但我不确定这是真的还是我理解正确。
可能需要 gnome snaps 来安装其他 gtk snaps,而需要 kde-frameworks 来安装 kde snaps。是这样吗?
像 deb-packages 一样,snap 可能有依赖项(其他 snap),当你安装一个 snap 时它们会被拉进来。
.yaml
您可以通过查看位于/snap/<snapname>/<revision-number>/meta/snap.yaml
、关键字base
和default-provider
重要部分的快照文件来找出快照具有哪些依赖项。您链接的答案只是总结了
.yaml
所有已安装快照的文件信息,因此将列出所有依赖于其他快照的快照。因此,未列出的快照不是依赖项,可以删除。由于
snapd
不提供autoremove
类似的机制apt
,除非您手动执行,否则当您删除快照时,快照的依赖项将永远不会被删除。既然你说你的磁盘空间相当有限,你也应该用清理缓存
sudo rm /var/lib/snapd/cache/*
。