web-dev-qa-db-ja.com

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
user3692459

何時間もの検索の後、解決策が見つかりました!
これはヒューズで起こります。これの代わりに

./nosqlbooster4mongo*.AppImage

の追加条項を追加しました

--appimage-extract-and-run

これでappImageを次のように実行できます

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

これがこの問題に直面している他の人を助けることを願っています!

1
user3692459