Ubuntu 22.04 默认无法直接运行 AppImage 软件。

Reason

Appimage on Ubuntu 22.04 有如下回答:

Ubuntu 22.04 will no longer ship with the libfuse2 package by default. The AppImage distribution (and more generally, all existing AppImage’s) are built expecting libfuse2 support. This means that AppImage’s will not run on Ubuntu 22.04 by default.

Solve

结合 Can’t Run AppImage on Ubuntu 22.04? Here’s How to Fix it 这篇文章可以知道,我们只需要安装好 libfuse2 依赖,同时给文件加上可执行权限就可以正常运行 appimage 软件了

Install libfuse2

sudo apt install libfuse2

Add permission

chmod +x software.appimage

最后双击就可以正常运行了。

References