我正在使用提供同步应用程序的云服务,该应用程序依赖于fuse
。当我尝试安装时,fuse
我得到
$ sudo apt install fuse
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages will be REMOVED:
fuse3 xdg-desktop-portal xdg-desktop-portal-gtk
The following NEW packages will be installed:
fuse
0 upgraded, 1 newly installed, 3 to remove and 0 not upgraded.
Need to get 27.0 kB of archives.
After this operation, 1’577 kB disk space will be freed.
Do you want to continue? [Y/n]
这将删除fuse3
和xdg-desktop-portal
(它有这种效果)。
有没有办法同时安装两者 fuse
?fuse3
或者有不同的解决方法?
答案1
我收到了云提供商的回复。他们的建议是直接安装libfuse2
(不使用命令行工具fuse
):
$ sudo apt install libfuse2
一切似乎都运行良好。