web-dev-qa-db-ja.com

CentOS 7でAppImagesを使用するためのFuseのセットアップ方法

CentOSのFuseのドキュメントが不十分であることに気づきました。CentOS7で AppImage を実行したいと思います。次のコマンドを実行して、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

Wikiの記事 私は、DebianベースおよびSUSEベースのディストリビューションのユーザーに向けられていたため、CentOSユーザーにはあまり役に立たなかったと認めました。 Sudo gpasswd -a fusion809 Fuse(fusion809は私のユーザー名です)の使用も試みましたが、Fuseが/etc/groupsのグループではなかったため、失敗しました。

2
BH2017

公式ウィキ: https://github.com/AppImage/AppImageKit/wiki/Fuse

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

自分をFuseグループに追加してみましたか?

usermod -aG Fuse $USER
0
probono

yum install Fuse*...で始まっていない名前のパッケージがあるため、Fuse...を実行したときに、実際にはすべてのFuseパッケージをインストールしなかった可能性があります。特に、おそらくgvfs-Fuseパッケージが必要です。

0
meuh