问题标签 [appimage-builder]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
31 浏览

fuse - 在 appimage 中使用 unionfs

我正在从 AppImage(使用 appimage-builder v0.9.2 创建)中的脚本创建覆盖 FS(使用 unionfs-fuse)。
覆盖已成功挂载,但在脚本结束时,无法使用“ Operation not permitted”正确卸载。
在 AppImage 结束后,fusermount -u工作正常。

这是脚本script.sh

这是 AppImage 配方AppImageBuilder.yml

terminal.png(构建 AppImage还需要一个随机图标文件)。

AppImage 是使用以下工具构建的:

任何帮助,将不胜感激!

0 投票
0 回答
15 浏览

python - appimage-builder 在创建 gpg 密钥时出现 pacman 错误

我一直在尝试使用 appimage-builder 来生成基于 PyQt5 的应用程序。为此,我需要将 python3 与它捆绑在一起,并且我正在尝试使用它,pacman因为我正在运行 arch。

但是,当我运行时appimage-builder,它会出错并显示以下消息:

在我的操作系统上安装期间使用没有任何问题pacman,所以我不确定问题是什么,或者为什么它甚至试图生成新的 gpg 密钥。

有什么我想念的吗?有没有另一种将 python 捆绑到 AppImage 中的方法?

AppImageBuilder.yml

以供参考:

0 投票
1 回答
13 浏览

appimage - 在 appimage-builder 中设置运行时环境变量

我能够使用 appimage-builder 成功打包一个小型 QtQuick 应用程序(QT 6.2)

我唯一的问题是让它工作我需要手动设置环境变量QML2_IMPORT_PATH=$APPDIR/home/rich/Qt/6.2.3/gcc_64/qml

为此,我提取了 appimage,将上面的行添加到 .env 文件中,然后重新打包 - 这很有效

有没有办法通过 appimage-builder 设置这个变量?