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

时间:2020-03-25 07:17:43

标签: python linux ubuntu-16.04 centos7 rhel7

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

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

1 个答案:

答案 0 :(得分:0)

所提到的命令应该在软件包位于存储库中时使用。在这种情况下,“ 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”命令进行验证。