web-dev-qa-db-ja.com

AppImageの実行中のエラー "Fusermount:Mountに失敗しました:操作が許可されていません" Ubuntu 20.04

私は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
Shersh

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

1
Shersh