我们可以让我们的程序安装在任何 Linux 发行版中吗?

Can we make our program installable in any Linux distro?

我可以使用如下简单的命令在任何 Linux 发行版中安装我的程序吗: 假设我的程序名称是manish 那么

for ubuntu
    `sudo apt-get install manish`
or in centos
    `yum install manish`

如果包在存储库中,则应该使用提到的命令。 "apt/yum install" 命令不适用于您的情况。无论如何,您可以创建自己的存储库并将其导入到 /etc/yum.repo.d/ (centos/oraclelinux/RH...) 路径中。该文件可以是:

[<repo tag (your choise)>]
name=<your repo's name>
baseurl=http://<repo's url once you have published it>
gpgkey=file:///<gpg key path (not obligatory)
gpgcheck=0 (if you have not a gpg key)
enabled=1

启用后,您可以继续使用 "yum update" 命令并使用 "yum repolist" 命令验证存储库是否有效。