我正在尝试运行一个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,它看起来配置得很好,但是我仍然看到了错误。我怎么才能修好它?
发布于 2021-09-30 23:14:39
在Ubuntu20.04上,完全重新安装fuse会有所帮助。
要么有:
sudo apt-get remove --auto-remove fuse
sudo apt-get install fuse或较少侵扰性
sudo apt --reinstall install fusehttps://askubuntu.com/questions/1366763
复制相似问题