Snap - snapd -snappy

De Linuxmemo.

A ‘snap’ is a universal Linux package.

Snaps work on any distribution or device. Snaps are faster to install, easier to create, safer to run, and they update automatically and transactionally so your app is always fresh and never broken.

The public collection of snaps includes the latest and best apps from GitHub and beyond, so you have the whole world of Linux apps at your fingertips.

Liste des application disponible

https://uappexplorer.com/apps?type=snappy

CLI

https://www.ubuntu.com/desktop/snappy

To list all snaps installed on your machine:

$ sudo snap list

To find a snap in the store:

$ sudo snap find <text to search>

To install a snap:

$ sudo snap install <snap name>

To update a snap:

$ sudo snap refresh <snap name>

To update all your snaps:

$ sudo snap refresh all

To revert a snap to the previously installed version:

$ sudo snap revert <snap name>

Or remove the snap:

$ sudo snap remove <snap name>

PROXY

sudo snap set system proxy.http="http://<proxy_addr>:<proxy_port>"
sudo snap set system proxy.https="http://<proxy_addr>:<proxy_port>"   # attention la valeur est bien "http:" et pas "https:"

sudo snap get system proxy
Outils personnels