指向不同的 yum 存储库
我不确定这是否可行,或者是否有更简单的方法,但我正在尝试安装一个软件包,但当我在 Yum 中搜索它时它不可用。我阅读了他们的文档,他们似乎有一个 fedora 软件包,我认为亚马逊的 ec2 linux 映像是基于该软件包的(或 cent os)。
如果我只是更改我的存储库以指向 fedora 或下载 rpm,这会起作用吗?或者这会破坏什么东西?
I am not sure if this is possible or if there's any easier way but I am trying to install a software package but its not available when I search for it within Yum. I read their documentation and they seem to have a fedora package which I think amazon's ec2 linux image is based on(or cent os).
If I just change my repository to point to fedora or download the rpm, would that work? Or would that break something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个应用程序是什么?
你可以做什么:
$ wget [rpm 文件链接]
$ su -c 'yum --nogpgcheck localinstall [我的 rpm 的路径]
$ su -c 'yum install --enablerepo=updates-testing [应用程序名称]
$ 阅读 README 文件并遵循指示
what is this application?
what you can do:
$ wget [link to rpm file]
$ su -c 'yum --nogpgcheck localinstall [path to my rpm]
$ su -c 'yum install --enablerepo=updates-testing [application name]
$ read README file and follow indication