CentOS 6采用RPMForge软件包

我有一个CentOS 6.6服务器,我尝试了一些从rpmforge和rpmforge和extras的软件包。 我做了一个yum更新与启用回购,并得到了很多东西更新。 现在我想倒退并replace所有.rf和.rfx包,并用standar reposreplace它们。 那可能吗?

谢谢!

使用yum history list来查看最近的yum交易。

使用yum history info <ID>来查看交易的细节。

使用yum history undo last恢复最近的事务,或使用yum history undo <ID>来还原特定的事务。

我最终做了,为我工作:

 yum list installed | grep @rpmforge rpm --erase --nodeps <list obtained with first command> 

然后从configuration文件禁用rpmforge回购

 yum install <list obtained with first command>