One of the most important and useful features added to YUM Package Manager (from version 3.2.25) is the ‘yum history’ command. It allows you to review a full history of yum transactions that have been run on a system.

 

It shows the dates and times when transactions were performed, whether the transactions succeeded or were aborted, the number of packages affected, and so much more.

 

yum, history can be used to undo or redo certain transactions. In this article, we will show how to undo or redo a yum install including dependencies on a CentOS/RHEL distribution.

 

To do this, first, you need to review the yum transactions history by running the following command as the root user, otherwise, use the sudo command to gain root privileges.

$ sudo yum history 
OR
$ sudo yum history list all

 

To undo a yum install, take note of the transaction ID, and perform the required action. In this example, we want to undo the install with ID 63, which will erase the package that was installed in the specified transaction, as follows (enter y/yes when asked).

$ sudo yum history undo 63

 

To redo a yum install, as before, take note of the transaction ID, and run it. For instance to redo the install with ID 63, run the following command.

$ sudo yum history redo 63

 

Note that you can do the same for a yum remove/erase transaction. The most important thing to note is the transaction ID of a yum install or yum remove action.

Помог ли вам данный ответ? 0 Пользователи нашли это полезным (0 голосов)