Installation yum在CentOS 6.6上安装texinfo(无软件包)

Installation yum在CentOS 6.6上安装texinfo(无软件包),installation,centos6,yum,texinfo,rocks,Installation,Centos6,Yum,Texinfo,Rocks,为了解决对某个程序的依赖性,我必须在centos 6.6系统上安装texinfo yum install texinfo 结果是 Setting up Install Process No package texinfo available Error: Nothing to do 我不知道如何解决这个问题。到目前为止,我已经下载了 谁能给我指一下正确的方向吗 texinfo由BASErepo提供 Available Packages Name : texinfo Arch

为了解决对某个程序的依赖性,我必须在centos 6.6系统上安装texinfo

yum install texinfo
结果是

Setting up Install Process
No package texinfo available
Error: Nothing to do
我不知道如何解决这个问题。到目前为止,我已经下载了


谁能给我指一下正确的方向吗

texinfo
BASE
repo提供

Available Packages
Name        : texinfo
Arch        : x86_64
Version     : 4.13a
Release     : 8.el6
Size        : 668 k
Repo        : base
Summary     : Tools needed to create Texinfo format documentation files
URL         : http://www.gnu.org/software/texinfo/
License     : GPLv3+
Description : Texinfo is a documentation system that can produce both online
            : information and printed output from a single source file. The GNU
            : Project uses the Texinfo file format for most of its documentation.
            : 
            : Install texinfo if you want a documentation system for producing both
            : online and print documentation from the same source file and/or if you
            : are going to write documentation for the GNU Project.
听起来您可能没有启用或配置它。签入
/etc/yum.repos.d/CentOS Base.repo
,希望您拥有该文件。在
[base]和[updates]
部分中,如果您确实将
0
更改为
1
如果您根本没有.repo文件,请检查是否启用了
行=0
,然后使用上面的路径和文件名创建该行,然后添加以下内容

[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

#released updates 
[updates]
name=CentOS-$releasever - Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
#baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
#baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

#contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib
#baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
最后执行
yum clean all
,您就可以开始了。

$dnf--enablerepo=PowerTools install texinfo

记录于:

yum安装二进制文件\u rpm\u文件\u位置
谢谢!它成功了,我先安装了i686(texinfo)版本,然后安装了x86_64(texinfo-tex),因为我的系统是x86_64。这个解决方案运行良好。回购协议存在,但显然已失效。执行了从0->1的更改,并执行了
yum安装texinfo
,并且进行得很好。非常感谢。