AppImage不工作

AppImage不工作

我正在使用开发工具来处理 mongodb。昨天它运行良好。今天我来的时候在终端中运行 appImage 时出现此错误

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

我通常使用终端来调用它,方法是转到我的下载目录,然后输入命令

./nosqlbooster4mongo*.AppImage

我搜索了互联网,但找不到令人满意的解决方案。我对 ubuntu 还很陌生,所以也许我做错了什么?

答案1

经过几个小时的搜索,终于找到了解决方案!
保险丝发生了这种情况。而不是这个

./nosqlbooster4mongo*.AppImage

我添加了一个额外的条款

--appimage-extract-and-run

现在你可以像这样运行你的 appImage

./nosqlbooster4mongo*.AppImage --appimage-extract-and-run

希望这能帮助其他遇到此问题的人!

相关内容