尝试使用可用软件包更新 samba4 时出错

尝试使用可用软件包更新 samba4 时出错

在我们的生产环境中,我需要通过使用最新的 samba4 软件包进行更新来应用安全补丁。在 centOS 6 版本上。

我知道当我这样做时有适用于 samba4 的软件包(yum info samba4)

[root@server ~]# yum info samba4
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
 * base: ftpmirror.your.org
 * epel: archive.linux.duke.edu
 * extras: ftp.osuosl.org
 * updates: bay.uchicago.edu
Available Packages
Name        : samba4
Arch        : x86_64
Version     : 4.2.10
Release     : 12.el6_9
Size        : 428 k
Repo        : updates
Summary     : Server and Client software to interoperate with Windows machines
URL         : http://www.samba.org/
License     : GPLv3+ and LGPLv3+
Description : Samba is the standard Windows interoperability suite of programs for Linux and Unix.

但是,当我去进行更新时,它并没有被安装。

[root@server ~]# yum update samba4
Loaded plugins: fastestmirror, security
Setting up Update Process
Loading mirror speeds from cached hostfile
 * base: ftpmirror.your.org
 * epel: archive.linux.duke.edu
 * extras: ftp.osuosl.org
 * updates: bay.uchicago.edu
Package(s) samba4 available, but not installed.
No Packages marked for Update

我知道这个盒子上安装了 Samba

[root@server ~]$ rpm -qa | grep samba
samba-winbind-3.6.23-45.el6_9.x86_64
samba-common-3.6.23-45.el6_9.x86_64
samba-client-3.6.23-45.el6_9.x86_64
samba4-libs-4.2.10-11.el6_9.x86_64
samba-winbind-clients-3.6.23-45.el6_9.x86_64

为什么我无法更新 samba4 ?

谢谢

答案1

您不能,yum update samba4因为samba4没有安装,因此它会被列出,available packages并且当您尝试安装它时会收到消息。

如果你想要samba4你需要的命令是:

yum install samba4

相关内容