在我的CentOS服务器上安装CentOS时遇到了一些问题,我运行
yum install davfs2但我明白了:
Loaded plugins: fastestmirror, langpacks, priorities, universal-hooks
Loading mirror speeds from cached hostfile
* EA4: 91.197.228.252
* cpanel-addons-production-feed: 91.197.228.252
* base: centos.quelquesmots.fr
* centosplus: centos.mirror.fr.planethoster.net
* extras: centos.quelquesmots.fr
* rpmforge: mirrors.ircam.fr
* updates: centos.quelquesmots.fr
Nothing to do不确定,但也许我需要在我的发行版中添加更多的镜像,如果无法安装davfs2,我想知道在CentOS中安装webdav路由的其他选择,身体是webdav客户端,但我不能用它挂载文件夹。
谢谢你们,祝你们今天愉快
发布于 2017-07-04 12:48:18
您必须启用EPEL回购才能安装该软件包:
yum -y install epel-release
yum -y install davfs2安装完所需的软件包后,请禁用epel回购,因为您是在cPanel服务器上,而且这个附加的回购在某个时候可能会在cPanel/WHM夜间更新运行时破坏某些包依赖关系。
若要禁用EPEL回购,可以编辑/etc/yum.repos.d/epel.repo文件并将enabled=1替换为enabled=0
https://stackoverflow.com/questions/44893497
复制相似问题