每当我尝试通过快照存储安装任何内容时,任务都会由于错误而保持不完整。我在终端中尝试了这个命令:
sudo snap install core
。
它给了我这个输出: error: cannot communicate with server: Post "http://localhost/v2/snaps/core": dial unix /run/snapd.socket: connect: no such file or directory
。
当我snap version
在终端上运行时,我得到了这个列表。
snap 2.49-1+b5
snapd unavailable
series -
谁能告诉我这是怎么回事?提前致谢。
答案1
检查快照的状态
systemctl status snapd
如果 snap 被禁用那么你必须启用它
systemctl enable snapd.service
systemctl enable --now snapd.apparmor
当 snap 启用时,键入以下命令来启动它:
systemctl start snapd.service
希望这能成功