我有一台使用了四年的笔记本,最初运行的是 Ubuntu 18.10,然后每六个月升级一次“正常”的 Ubuntu 版本。目前,它运行的是 22.10。当我运行命令时snap list
,我得到以下输出:
Name Version Rev Tracking Publisher Notes
bare 1.0 5 latest/stable canonical✓ base
core 16-2.58.3 14946 latest/stable canonical✓ core
core18 20230320 2721 latest/stable canonical✓ base
core20 20230308 1852 latest/stable canonical✓ base
core22 20230325 607 latest/stable canonical✓ base
firefox 111.0.1-2 2487 latest/stable mozilla✓ -
gnome-3-38-2004 0+git.6f39565 137 latest/stable canonical✓ -
gnome-42-2204 0+git.e7d97c7 68 latest/stable canonical✓ -
gtk-common-themes 0.1-81-g442e511 1535 latest/stable canonical✓ -
hunspell-dictionaries-1-7-2004 1.7-20.04+pkg-6fd6 2 latest/stable brlin -
snap-store 41.3-66-gfe1e325 638 latest/stable canonical✓ -
snapd-desktop-integration 0.1 57 latest/stable/… canonical✓ -
我的系统上真的需要core18
、gnome-3-28-2004
以及上面列出的任何其他快照吗?
在类似的测试系统上我尝试过:
# snap remove gnome-3-38-2004
gnome-3-38-2004 removed
# snap remove core18
core18 removed
没有任何警告或错误消息。但是,之后它firefox
没有启动,并给我一个ERROR: not connected to the gnome-3-38-2004 content interface.
消息。
所以,我必须采取措施snap install gnome-3-38-2004
来纠正这个问题。
哪些其他快照可以安全地从我的系统中删除?
答案1
感谢您在评论中提出的指点。
我发现输出
$ grep "default-provider:\|base:" /snap/*/*/meta/snap.yaml | awk '{print $NF}' | sort -u
bare
core20
core22
gnome-3-38-2004
gnome-42-2204
gtk-common-themes
或者
$ grep "default-provider:\|base:" /snap/*/current/meta/snap.yaml | awk '{print $NF}' | sort -u
bare
core20
core22
gnome-3-38-2004
gnome-42-2204
gtk-common-themes
将列出不应删除的快照;换句话说,依赖其他快照的快照。
请注意,折断系统没有警告我按gnome-3-38-2004
扣无法或不应被移除。