ubuntu内移除snap

ubuntu 移除snap

snap 是 ubuntu 的集中式管理的软件商城,但在使用过程中软件更新没有很及时。ubuntu 20.04 在安装开始就有预装了 snap,所以我想把它移除掉,省出系统空间。

具体参考链接:https://cloud.tencent.com/developer/article/2168090,可以直接跳转查看步骤。

查看 snap 服务

先查看 snapd 服务是否在运行。

bash 复制代码
$ sudo systemctl status snapd
[sudo] password for sanren1024: 
● snapd.service - Snap Daemon
     Loaded: loaded (/lib/systemd/system/snapd.service; enabled; vendor preset: enabled)
     Active: active (running) since Mon 2023-12-04 09:59:36 CST; 10min ago
TriggeredBy: ● snapd.socket
   Main PID: 853 (snapd)
      Tasks: 15 (limit: 9387)
     Memory: 64.3M
     CGroup: /system.slice/snapd.service
             └─853 /usr/lib/snapd/snapd

12月 04 09:59:33 vm-ubuntu2004 systemd[1]: Starting Snap Daemon...
12月 04 09:59:36 vm-ubuntu2004 snapd[853]: overlord.go:272: Acquiring state lock file
12月 04 09:59:36 vm-ubuntu2004 snapd[853]: overlord.go:277: Acquired state lock file
12月 04 09:59:36 vm-ubuntu2004 snapd[853]: daemon.go:247: started snapd/2.60.4 (series 16; classic) ubuntu/>
12月 04 09:59:36 vm-ubuntu2004 snapd[853]: daemon.go:340: adjusting startup timeout by 1m10s (pessimistic e>
12月 04 09:59:36 vm-ubuntu2004 snapd[853]: backends.go:58: AppArmor status: apparmor is enabled and all fea>
12月 04 09:59:36 vm-ubuntu2004 systemd[1]: Started Snap Daemon.

上述结果中显示 Active: active (running) 表示 snapd 线程正在运行。

停止 snap 服务

停止 snap 相关服务。

bash 复制代码
$ sudo systemctl disable snapd
Removed /etc/systemd/system/multi-user.target.wants/snapd.service.
$ sudo systemctl disable snapd.socket
Removed /etc/systemd/system/sockets.target.wants/snapd.socket.
$ sudo systemctl disable snapd.seeded.service
Removed /etc/systemd/system/multi-user.target.wants/snapd.seeded.service.
Removed /etc/systemd/system/cloud-final.service.wants/snapd.seeded.service.

这样停止了 snap 服务。

查看 snap 安装的软件

查看 snap 已经安装的软件。

bash 复制代码
$ snap list
Name               Version           Rev    Tracking         Publisher   Notes
bare               1.0               5      latest/stable    canonical✓  base
core20             20230801          2015   latest/stable    canonical✓  base
core22             20230801          864    latest/stable    canonical✓  base
gnome-3-38-2004    0+git.efb213a     143    latest/stable/...  canonical✓  -
gnome-42-2204      0+git.ff35a85     141    latest/stable    canonical✓  -
gtk-common-themes  0.1-81-g442e511   1535   latest/stable/...  canonical✓  -
snap-store         41.3-71-g709398e  959    latest/stable/...  canonical✓  -
snapd              2.60.4            20290  latest/stable    canonical✓  snapd

卸载 snap 软件

卸载 snap 软件,先卸载普通应用软件,后现在 base 软件。

bash 复制代码
$ snap remove snap-store
$ snap remove gtk-common-themes
$ snap remove gnome-42-2204
$ snap remove gnome-3-38-2004
$ snap remove core20
$ snap remove core22
$ snap remove bare
$ snap remove snapd   # 最后移除这个服务,这是所有服务的基础。

这样 snap 就可以从系统中移除。

禁止 snap 重新安装

若只是上述方式移除了 snap,后面在使用过程中系统会提示软件升级,若安装了,snap 又会被重新安装。因此要禁止 snap 重新安装。

编辑配置文件

bash 复制代码
$ sudo gedit /etc/apt/preferences.d/nosnap.pref

添加内容

text 复制代码
Package: snapd
Pin: release a=*
Pin-Priority: -10

保存退出。

相关推荐
算法与编程之美30 分钟前
文件的写入与读取
linux·运维·服务器
xianwu5431 小时前
反向代理模块
linux·开发语言·网络·git
Amelio_Ming1 小时前
Permissions 0755 for ‘/etc/ssh/ssh_host_rsa_key‘ are too open.问题解决
linux·运维·ssh
Ven%2 小时前
centos查看硬盘资源使用情况命令大全
linux·运维·centos
TeYiToKu3 小时前
笔记整理—linux驱动开发部分(9)framebuffer驱动框架
linux·c语言·arm开发·驱动开发·笔记·嵌入式硬件·arm
dsywws3 小时前
Linux学习笔记之时间日期和查找和解压缩指令
linux·笔记·学习
yeyuningzi3 小时前
Debian 12环境里部署nginx步骤记录
linux·运维·服务器
上辈子杀猪这辈子学IT3 小时前
【Zookeeper集群搭建】安装zookeeper、zookeeper集群配置、zookeeper启动与关闭、zookeeper的shell命令操作
linux·hadoop·zookeeper·centos·debian
minihuabei3 小时前
linux centos 安装redis
linux·redis·centos
lldhsds4 小时前
书生大模型实战营第四期-入门岛-1. Linux前置基础
linux