以下是AppImage在Debian上的使用教程:
sudo apt update,sudo apt install libfuse2。chmod +x 文件名.AppImage,或右键文件,在属性中勾选“允许作为程序执行文件”。./文件名.AppImage。安装AppImageLauncher工具,执行命令sudo add-apt-repository ppa:appimagelauncher-team/stables,sudo apt update,sudo apt install appimagelauncher。安装后,双击AppImage文件选择“集成到系统菜单”即可。
在~/.local/share/applications/目录下创建.desktop文件,如nano ~/.local/share/applications/MyApp.desktop,输入内容[Desktop Entry] Name=MyApp Exec=/path/to/app.AppImage Icon=/path/to/icon.png Type=Application Categories=Utility; Terminal=false。保存后执行chmod +x ~/.local/share/applications/MyApp.desktop,再运行update-desktop-database ~/.local/share/applications/,最后在应用菜单中找到程序,右键选择“添加到收藏夹”。