redhat5 rpm -e --nodeps --allmatches 解除安裝java jdk示例

wisdomone1發表於2013-05-23

[root@rhel5 Server]# java -version
java version "1.4.2"
gij (GNU libgcj) version 4.1.2 20080704 (Red Hat 4.1.2-46)

Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
[root@rhel5 Server]# rpm -qa|grep gcj
libgcj-4.1.2-46.el5
java-1.4.2-gcj-compat-1.4.2.0-40jpp.115
libgcj-4.1.2-46.el5
[root@rhel5 Server]# rpm -e -nodeps libgcj-4.1.2-46.el5
-nodeps: unknown option
[root@rhel5 Server]# rpm -e --nodeps libgcj-4.1.2-46.el5
error: "libgcj-4.1.2-46.el5" specifies multiple packages
[root@rhel5 Server]# rpm -e --nodeps java-1.4.2-gcj-compat-1.4.2.0-40jpp.115
[root@rhel5 Server]# rpm -e --nodeps libgcj-4.1.2-46.el5
error: "libgcj-4.1.2-46.el5" specifies multiple packages
[root@rhel5 Server]# rpm -e --allmatches --nodeps libgcj-4.1.2-46.el5
warning: /usr/lib/security/classpath.security saved as /usr/lib/security/classpa                                                                                        th.security.rpmsave
warning: /usr/lib64/security/classpath.security saved as /usr/lib64/security/cla                                                                                        sspath.security.rpmsave
[root@rhel5 Server]# rpm -qa|grep gcj
[root@rhel5 Server]# java -version
-bash: /usr/bin/java: No such file or directory

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-761871/,如需轉載,請註明出處,否則將追究法律責任。

相關文章