I have a snap package installed and I would like to run a previous version of it temporarily to test something.
I can see several versions of this package is installed in /var/lib/snapd/snaps/
Is there a simple (possibly one liner) command to run the previous version?
I reverted a snap to a previous version and after some time a sudo apt update && sudo apt upgrade automatically installed the latest available version. I was keeping an eye out but didn't even noticed it.
– tnagy.adam Jan 17 '22 at 10:16Inkscape
, it did show an older version, but it was markeddisabled
like your example shows, and wouldn't revert. Next time I listed it, only the latest version showed up, not the older one. Sigh... Arg. just re-read that, you're talking about local stored versions. Is there a way to see what's remote? – John C Jun 10 '22 at 17:002. Is there a way to see what's remote?
snap info <program_name>
then go to the url which is found in thecontact
section. Go to "Overview" (top left), then click "View full publishing history" (top right).Example: https://launchpad.net/ubuntu/+source/chromium-browser/+publishinghistory
– tnagy.adam Jun 13 '22 at 14:30sudo snap refresh someapp
– jave.web Aug 01 '23 at 07:32