« Snap » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
(Page créée avec « Category:Ubuntu = Command lines = <kode lang='bash'> snap find <package> snap list </kode> ») |
|||
(5 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
[[Category:Ubuntu]] | [[Category:Ubuntu]] | ||
= | = Links = | ||
* [https://snapcraft.io/docs/getting-started Documentation] | |||
* [https://snapcraft.io Snapcraft, the app store for Linux] | |||
= Description = | |||
Snap applications are installed with all their dependencies in the user folder. | |||
= Update = | |||
<kode lang='bash'> | <kode lang='bash'> | ||
snap | # update the applications | ||
sudo snap refresh | |||
</kode> | |||
= Find = | |||
<kode lang=''> | |||
# list installed applications | |||
snap list | snap list | ||
# --all list also disabled applications | |||
# find a application | |||
snap find <application> | |||
</kode> | |||
= Install = | |||
{{info | Binaries are installed in {{boxx|/snap/bin}}}} | |||
<kode lang='bash'> | |||
sudo snap install <application> | |||
</kode> | |||
= Remove = | |||
<kode lang='bash'> | |||
# remove an application | |||
snap remove <application> | |||
# --purge remove also the associated user configurations | |||
</kode> | </kode> |
Dernière version du 1 octobre 2023 à 11:54
Links
Description
Snap applications are installed with all their dependencies in the user folder.
Update
# update the applications sudo snap refresh |
Find
# list installed applications snap list # --all list also disabled applications # find a application snap find <application> |
Install
Binaries are installed in /snap/bin |
sudo snap install <application> |
Remove
# remove an application snap remove <application> # --purge remove also the associated user configurations |