在我们的生产环境中,我需要通过更新最新的samba4包来应用安全修补程序。在centOS 6构建上。
我知道当我这么做的时候,samba4有可用的软件包(yum 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
我知道桑巴装在这个盒子上
[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了吗?
谢谢
发布于 2018-03-16 18:13:07
您不能使用yum update samba4
,因为samba4
没有安装,因此它被列在available packages
中,以及当您试图安装它时收到的消息。
如果您想要samba4
,您需要的命令是:
yum install samba4
https://serverfault.com/questions/902069
复制相似问题