2017-02-26 21:30:46 +00:00
+++
title = "History and Software Rollback"
+++
2017-01-04 04:08:41 +00:00
# History and Software Rollback
2017-02-03 07:36:41 +00:00
Solus provides a history and rollback feature via its package manager, eopkg. This feature allows you to see when your repository was last
updated, actions such as installation, removal, and upgrading of software.
2017-01-04 04:08:41 +00:00
2017-02-03 07:36:41 +00:00
Our rollback feature allows you to essentially rewind your system's software back to a previous state, assuming you or our repository has the versions in question.
2017-01-04 04:08:41 +00:00
## History
You can see the history from eopkg by using:
``` bash
sudo eopkg history
```
## Rollback
2017-02-03 07:36:41 +00:00
To rollback your system, first use the above history command to check what the transaction / operation number was. Then, we use the following command:
2017-01-04 04:08:41 +00:00
``` bash
sudo eopkg history -t number
```
2017-02-03 07:36:41 +00:00
The number, in this case, is the operation before the one you want to change. So if the number was `100` , then you would use `99` .