4

I would like to know how to get the transaction history of yum (i.e. get the installations, deletions, etc.), hopefully ordered from most to least recent.

Is there a way to accomplish this?

masegaloeh
  • 18,236
  • 10
  • 57
  • 106
Juan Carlos Coto
  • 677
  • 2
  • 6
  • 13

1 Answers1

3

Try:

yum history

You can get the details of a specific transaction with:

yum history info 92

To revert a transaction:

yum history undo 92

See also the yum man page for more options you can use.

Michael Hampton
  • 244,070
  • 43
  • 506
  • 972