AppImages를 사용하기 위해 CentOS 7에서 FUSE를 설정하는 방법은 무엇입니까?

AppImages를 사용하기 위해 CentOS 7에서 FUSE를 설정하는 방법은 무엇입니까?

CentOS에 대한 FUSE 문서가 드물다는 것을 알았고 하나를 실행하고 싶습니다.애플리케이션 이미지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

공식 위키:https://github.com/AppImage/AppImageKit/wiki/FUSE

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

답변2

회로 차단기 그룹에 자신을 추가해 보셨나요?

usermod -aG fuse $USER

답변3

이렇게 하면 yum install fuse*...일부 패키지에는 fuse.... 특히 패키지가 필요할 수도 있습니다 gvfs-fuse.

관련 정보