1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
| 安装包时出现异常:
[iyunv@200-70 ~]# yum groupinstall "Desktop"
(略)
Transaction Summary
================================================================================================================================================================================================================================================================
Install 135 Package(s)
Upgrade 16 Package(s)
Total size: 124 M
Is this ok [y/N]: y
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Check Error:
file /etc/pki/rpm-gpg/RPM-GPG-KEY from install of rhn-client-tools-1.0.0.1-18.0.2.el6.noarch conflicts with file from package oraclelinux-release-6:6Server-5.0.2.x86_64
Error Summary
-------------
找原因:
http://docs.oracle.com/cd/E37670_01/E57668/html/ol_ki_65rn.html
2.2.36 Upgrading rhn-client-tools
The expiration date for the Oracle Linux 6 GPG key has been extended in this update. If you install the rhn-client-tools package and the installed version of the oraclelinux-release package is from a previous update, you might see a transaction error such as the following:
Transaction Check Error:
file /etc/pki/rpm-gpg/RPM-GPG-KEY from install of
rhn-client-tools-1.0.0.1-18.0.2.el6.noarch conflicts with file from package
oraclelinux-release-6:6Server-5.0.2.x86_64
To avoid this error, install both the oraclelinux-release and rhn-client-tools packages from this update (oraclelinux-release-6Server-6.0.2 or later and rhn-client-tools-1.0.0.1-18.0.2 or later).
OK,我们来更新下系统先:
[iyunv@200-70 ~]# yum update
Loaded plugins: security
Setting up Update Process
Resolving Dependencies
--> Running transaction check
(略)
Complete!
查看版本:
[iyunv@200-70 ~]# rpm -qa |grep oraclelinux-release
oraclelinux-release-notes-6Server-14.x86_64
oraclelinux-release-6Server-6.0.2.x86_64
[iyunv@200-70 ~]# rpm -qa |grep rhn-client
rhn-client-tools-1.0.0.1-18.0.2.el6.noarch
再次安装包:
[iyunv@200-70 ~]# yum groupinstall "Desktop"
(略)
Complete!
无异常,问题解决。
|