Here's How to Restore Older Versions With Linux Snaps

Posted on

Here’s a quick one. Sometimes when using software you may want to use an older release. Perhaps there’s a regression in the newest release or maybe you want to test something specifically with an older version. Either way, there’s an easy way to do this when that software is installed via a Linux snap.

To go back to the last version of the software you used before the update, you can run:

1
sudo snap revert <snap-name>

What if you want to go further back? A specific release? First you can list all revisions available, then revert to a specific revision:

1
2
snap list <snap-name>  --all
sudo snap revert <snap-name> --revision=<revision-number>
comments powered by Disqus
Share
Share