在 Ubuntu 20.04 上运行 AppImage 时出错“fusermount:挂载失败:操作不允许”

在 Ubuntu 20.04 上运行 AppImage 时出错“fusermount:挂载失败:操作不允许”

我正在尝试运行 AppImage 可执行文件。但是,我在运行它时看到以下错误消息:

$ jetbrains-toolbox 
fusermount: mount failed: Operation not permitted

Cannot mount AppImage, please check your FUSE setup.
You might still be able to extract the contents of this AppImage 
if you run it with the --appimage-extract option. 
See https://github.com/AppImage/AppImageKit/wiki/FUSE 
for more information
open dir error: No such file or directory

我已经fuse安装完毕,看起来配置正确,但仍然显示错误。我该如何修复?

答案1

在 Ubuntu 20.04 上,完全重新安装fuse有帮助。

可以采用以下方式:

sudo apt-get remove --auto-remove fuse
sudo apt-get install fuse

或更少的侵扰

sudo apt --reinstall install fuse

信息来源:https://youtrack.jetbrains.com/issue/TBX-3544

相关内容