我似乎无法在红帽子7.2上安装一致
尝试了多个教程,如本教程
http://www.tecmint.com/file-synchronization-in-linux-using-unison/
我已经启用了epel,但是:
sudo yum install unison
sudo yum --enablerepo=epel install unison两者都给了我:
No package unison available.发布于 2016-10-07 01:38:09
那篇教程是完全错误的。(这是经常出现这种情况的网站之一。)
在EPEL中,统一的包名包括版本号,如unison227和unison240。这是因为,无论出于什么原因,不同版本的unison是不兼容的,因此在所有要同步的系统上,版本必须是相同的。
在EPEL 7,只有unison240是可用的,目前它在EPEL测试回购,还没有移动到稳定。这就是您将要安装的包的基本名称(例如unison240、unison240-text和/或unison240-gtk)。
yum --enablerepo=epel --enablerepo=epel-testing install unison240https://serverfault.com/questions/807582
复制相似问题