安装 chrony 时没有可用的包 chrony
Posted
技术标签:
【中文标题】安装 chrony 时没有可用的包 chrony【英文标题】:No Package chrony availiable when I install chrony 【发布时间】:2019-02-05 02:02:14 【问题描述】:在我的 Centos 6.5 中我想安装 chrony
# yum install chrony
我收到以下错误
加载的插件:fastestmirror 从缓存加载镜像速度 hostfile 设置安装过程 没有可用的包 chrony。 错误:无事可做
如何在 Centos 6.5 上安装 Chrony?
非常感谢您在解决这个问题时给我的任何帮助。
【问题讨论】:
【参考方案1】:听起来您在安装时缺少base.repo
。
Available Packages
Name : chrony
Arch : x86_64
Version : 2.1.1
Release : 2.el6_8
Size : 266 k
Repo : base
Summary : An NTP client/server
URL : http://chrony.tuxfamily.org
License : GPLv2
Description : A client/server for the Network Time Protocol, this program keeps your
: computer's clock accurate. It was specially designed to support
: systems with intermittent internet connections, but it also works well
: in permanently connected environments. It can use also hardware reference
: clocks, system real-time clock or manual input as time references.
听起来您可能缺少配置中的“CentOS-Base”存储库。签入/etc/yum.repos.d/CentOS-Base.repo
如果不存在则创建它并添加以下配置块;
[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
#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&infra=$infra
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
你也可以通过http://rpm.pbone.net找到包
【讨论】:
以上是关于安装 chrony 时没有可用的包 chrony的主要内容,如果未能解决你的问题,请参考以下文章