如何为 Linux Mint 创建安装程序
我为我的软件创建了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看程序
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.您可以使用的另一个很棒的工具是 fpm。它允许从许多不同的东西(例如 rpm)创建几种不同的包类型。目前,它适用于以下内容:
来源:
目标:
您可以在这里找到它: 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:
Targets:
You can find it here: https://github.com/jordansissel/fpm
如果你愿意,你可以使用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 runsudo rpm -i package_name