如何使用 yum 安装 redhat/el6/x86_64/ 中列出的 rpms
how to use yum install the rpms listed in redhat/el6/x86_64/
可以在这里找到一些 rpm 包,
http://dl.marmotte.net/rpms/redhat/el6/x86_64/
喜欢 rubygem-bundler-1.0.15-1.el6.noarch.rpm
、rubygem-thor-0.14.6-1.el6.noarch.rpm
、
我的问题是如何才能使用 yum install rubygem-bundler
安装这些软件包,yum repo 是什么?
我可以添加什么 /etc/yum.repo.d/
我在 AWS 中使用亚马逊 linux。
很简单,在/etc/yum.repos.d中新建一个名为marmatte.repo的文件,内容如下:
[marmotte]
name=marmotte
baseurl=http://dl.marmotte.net/rpms/redhat/el6/x86_64/
enabled=1
gpgcheck=0
保存后运行yum makecache
.
可以在这里找到一些 rpm 包, http://dl.marmotte.net/rpms/redhat/el6/x86_64/
喜欢 rubygem-bundler-1.0.15-1.el6.noarch.rpm
、rubygem-thor-0.14.6-1.el6.noarch.rpm
、
我的问题是如何才能使用 yum install rubygem-bundler
安装这些软件包,yum repo 是什么?
我可以添加什么 /etc/yum.repo.d/
我在 AWS 中使用亚马逊 linux。
很简单,在/etc/yum.repos.d中新建一个名为marmatte.repo的文件,内容如下:
[marmotte]
name=marmotte
baseurl=http://dl.marmotte.net/rpms/redhat/el6/x86_64/
enabled=1
gpgcheck=0
保存后运行yum makecache
.