私は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
この問題に直面している他の人の助けになれば幸いです。