AppImage 是一种用于在 Linux 上分发便携式软件的软件包格式。它是一个单个可执行文件,其中包含运行软件所需的所有必要依赖项和库,使其易于在任何 Linux 发行版上运行。
在 Ubuntu 上安装 AppImage 22.04 LTS Jammy 水母
第 1 步。首先,通过在终端中运行以下命令,确保所有系统软件包都是最新的。apt
sudo apt update sudo apt upgrade sudo apt install libfuse2
第 2 步。在 Ubuntu 22.04 上安装 AppImage。
许多软件都有扩展名。您可以在 AppImage GitHub 页面上找到它们。在本教程中,我将安装Apache_NetBeans并配置其 AppImage 文件。.appimage
下载扩展文件后,需要使其可执行。打开终端并导航到保存 AppImage 的位置。然后,输入以下命令:
chmod +x [AppImage file name]
将 “” 替换为 AppImage 文件的实际名称。[AppImage file name]
第 3 步。在 Ubuntu 上运行 AppImage。
若要运行 AppImage,请输入以下命令:
./[AppImage file name]
将 “” 替换为 AppImage 文件的实际名称。应用映像现在应该启动。[AppImage file name]
第 4 步。(可选)创建桌面快捷方式:
如果要在桌面上创建 AppImage 的快捷方式,请右键单击 AppImage 文件并选择“创建桌面条目”。这将创建一个快捷方式,您可以使用该快捷方式从桌面启动 AppImage。
感谢您使用本教程在 Ubuntu 22.04 LTS Jammy 水母系统上安装 AppImage。如需其他帮助或有用信息,我们建议您查看 AppImage 官方网站。