如何为 Linux Mint 创建安装程序

发布于 2024-08-12 19:24:37 字数 133 浏览 10 评论 0原文

我为我的软件创建了 rpm,它在 Fedora 上运行良好。但每当我想在 linux mint 中安装相同的东西时,就会失败。因为 linux mint 支持 .deb 文件安装。所以我想为我的软件创建安装程序包,以便在 Linux Mint 中兼容。

I have created rpm for my software which works fine for fedora. But this fails whenever I want to install the same in linux mint. because linux mint supprts .deb file for installation. So I want to create installer package for my software which will be compatible in linux mint.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

|煩躁 2024-08-19 19:24:37

查看程序 alien,它允许您操纵Linux 发行版上的外国软件包。请注意,这对于安装简单的软件包来说很好,但是您应该从源代码构建软件包如果您打算分发给大量受众。

Check out the program alien, which allows you to manipulate foreign packages on a linux distro. Note that this is fine for installing simple packages, but you should build the package from source if you intend to distribute to a large audience.

绿萝 2024-08-19 19:24:37

您可以使用的另一个很棒的工具是 fpm。它允许从许多不同的东西(例如 rpm)创建几种不同的包类型。目前,它适用于以下内容:

来源:

  • gem(甚至为您自动下载)
  • python 模块(为您自动下载)
  • pear(也为您下载)
  • 目录
  • tar(.gz) 档案
  • rpm
  • deb
  • 节点包 (npm)

目标:

  • deb
  • rpm
  • Solaris
  • tar
  • 目录
  • Mac OS X .pkg 文件 (osxpkg)

您可以在这里找到它: https://github.com/jordansissel/fpm

Another great tool at your disposal for this would be fpm. It allows to create several different package types from many different things, like rpm's. It currently works with the following:

Sources:

  • gem (even autodownloaded for you)
  • python modules (autodownload for you)
  • pear (also downloads for you)
  • directories
  • tar(.gz) archives
  • rpm
  • deb
  • node packages (npm)

Targets:

  • deb
  • rpm
  • solaris
  • tar
  • directories
  • Mac OS X .pkg files (osxpkg)

You can find it here: https://github.com/jordansissel/fpm

荒芜了季节 2024-08-19 19:24:37

如果你愿意,你可以使用alien,这实际上是推荐的方法,但你也可以使用rpm安装它。只需安装 rpm:sudo apt-get install rpm 然后运行 ​​sudo rpm -i package_name

you can use alien if you want and that's the recommended way to do it actually, but you can install it with rpm too. just install rpm:sudo apt-get install rpm then run sudo rpm -i package_name

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文