Bruno Miguel

Tips

Be careful with this. Don't remove old versions before ensuring the new package version works as expected.

How to list all the installed versions

LANG=C snap list --all | awk '/disabled/{print $1, $3}'

How to remove all the old versions in a batch

LANG=C snap list --all | awk '/disabled/{print $1, $3}' |
    while read SnapName revision; do
        sudo snap remove "$SnapName" --revision="$revision"
    done

This can save you some disk space, but it can become a headache if you don't make sure the new snap package version is working well. Also, don't forget to read the fine manual.

#Linux #Ubuntu #Snap #Tips

Plasma 6 screenshot Image from the KDE website. All rights reserved to the project

Plasma 6.0.0 was released recently and two minor releases, 6.0.1 and 6.0.2 are already out, too. If you're on Arch Linux and you want to try this desktop environment but prefer to have a minimal set of packages, I have a metapackage you can use as is or to build your own. You can get it at Codeberg or Github.

Read more...