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

希望这对其他遇到这个问题的人有所帮助!

帮助我在Ubuntu 22.04上运行Mbed Studio。只需从用户账户执行mbed-studio --appimage-extract-and-run,就完成了。 - Thermal_insulator