在 Ubuntu 上运行 AppImage 非常简单,按下面步骤操作即可:
例如:
wget https://example.com/xxx.AppImage
AppImage 默认没有执行权限,需要先赋予:
chmod +x xxx.AppImage
例如:
chmod +x /home/user/Downloads/xxx.AppImage
.AppImage 文件chmod +x./xxx.AppImage
如果不在当前目录,使用完整路径:
/home/user/Downloads/xxx.AppImage
chmod +x xxx.AppImage
Ubuntu 22.04 默认禁止直接运行 AppImage,需要安装 FUSE:
sudo apt update
sudo apt install libfuse2
然后重新运行。
sudo apt install fuse
使用工具 AppImageLauncher(推荐):
sudo add-apt-repository ppa:appimagelauncher-team/stable
sudo apt update
sudo apt install appimagelauncher
安装后:
AppImage 是“绿色软件”,直接删除文件即可:
rm xxx.AppImage
chmod +x xxx.AppImage
./xxx.AppImage
如果你有 具体的 AppImage 名称(如 Obsidian、Typora、Blender、Krita 等),我可以给你更精确的说明。