Ubuntu:如何使 apt-get/synaptic 为自己的应用程序工作
我们正在开发一个(闭源)Java 应用程序,并考虑在用户计算机上自动更新软件的可能性。幸运的是,几乎所有 Linux 系统都存在包管理器。出于多种原因,我们认为将我们的应用程序添加到公共存储库没有用,但是如何创建自己的应用程序、管理它并告诉用户的计算机从中进行轮询和更新呢?
We are developing a (closed-source) Java application and think about possibilities to update the software automatically on the user's machines. Fortunately, for nearly all Linux systems there exist package managers. We don't think it would be useful to add our application to the common repositories for several reasons, but how to create an own one, manage it and tell the user's machines to poll and update from that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有关打包应用程序的信息,请参阅 Debian 维护者指南。要分发软件包,您需要设置自己的软件包存储库,这可以使用 dpkg-scanpackages 或 reprepro 工具来完成。对此的简短介绍可以在这篇博文中找到。要简化向存储库添加新构建包的过程,请查看
dupload
工具。For packaging a application see the Debian Maintainers Guide. To distribute the packages you need to set up your own package-repository this can be done using the
dpkg-scanpackages
or thereprepro
tool. A short introduction to this can be found in this blog post. To simplify adding a new build package to the repo, have a look at thedupload
tool.Debian wiki 上有一个 Java/Packaging 页面。
There's a Java/Packaging page on the Debian wiki.