AppImagesを使用するためにCentOS 7でFUSEを設定する方法は?

AppImagesを使用するためにCentOS 7でFUSEを設定する方法は?

CentOSのFUSEドキュメントがまれであることがわかり、1つを実行したいと思います。アプリケーションイメージCentOS 7で。以下を実行して、すべてのFUSE関連パッケージをインストールしました。

sudo yum install -y fuse* afuse

明確なエラーメッセージなしでコマンドが実行されます。私は以下を実行しました:

sudo modprobe fuse

ただし、AppImageを実行しようとするとエラーが発生し続けます。

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/probonopd/AppImageKit/wiki/FUSE 
for more information
open dir error: No such file or directory

認めなければならないウィキの記事CentOSユーザーにはDebianベースとSUSEベースのディストリビューションユーザーに適しているので、役に立たないという指示を受けました。また(fusion809は私のユーザー名です)を試してみましたが、sudo gpasswd -a fusion809 fusefusionではないので失敗しました/etc/groups

ベストアンサー1

公式wiki:https://github.com/AppImage/AppImageKit/wiki/FUSE

yum --enablerepo=epel -y install fuse-sshfs # install from EPEL
user="$(whoami)"
usermod -a -G fuse "$user" 

おすすめ記事