« Snap » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
Aucun résumé des modifications
Ligne 1 : Ligne 1 :
[[Category:Ubuntu]]
[[Category:Ubuntu]]
= Command lines =
= Links =
* [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'>
# find a package
# update the applications
snap find <package>
sudo snap refresh
</kode>


# list installed packages
= Find =
<kode lang=''>
# list installed applications
snap list
snap list
#  --all list also disabled applications
# find a application
snap find <application>
</kode>
= Install =
<kode lang='bash'>
</kode>
= Remove =
<kode lang='bash'>
# remove an application
snap remove <application>
# --purge remove also the associated user configurations
</kode>
</kode>

Version du 7 août 2023 à 22:08

Links

Description

Snap applications are installed with all their dependencies in the user folder.

= Update

Bash.svg
# update the applications
sudo snap refresh

Find

Bash.svg
# list installed applications
snap list
#  --all list also disabled applications

# find a application
snap find <application>

Install

Bash.svg

Remove

Bash.svg
# remove an application
snap remove <application>
# --purge remove also the associated user configurations