web-dev-qa-db-fra.com

Le composant logiciel enfichable ubuntu est-il installé sur Xubuntu 16.04?

J'ai récemment mis à niveau Ubuntu 16.04 beta 2 à 16.04 LTS et ai lu Comment installer et supprimer des packages d'instantané dans Ubuntu 16.04 .

Mais quand je lance snap list, je reçois le résultat suivant:

error: no snaps found

Est-ce que Xubuntu a aussi un emballage instantané ou est-ce uniquement pour Ubuntu?

Sortie de lsb_release -a:

Distributor ID: Ubuntu
Description:    Ubuntu 16.04 LTS
Release:    16.04
Codename:   xenial
2
Mohit Rajan

Canonical dévoile la 6e version d'Ubuntu pour LTS avec 16.04 - Ubuntu 16.04, LTS ajoute un nouveau format de package d'application "instantané", permettant une convergence accrue entre IOT, mobile et poste de travail .

Vous obtenez juste cette sortie parce qu'aucun paquet logiciel enfichable n'est actuellement installé ... execute:

snap find  

La sortie affiche les packages actuellement disponibles:

Name                   Version                  Summary  
canonical-dragon       0.7.1                    The gadget snap for the dragonboard  
canonical-i386         3.1                      The gadget snap for generic i386 systems  
canonical-pc           3.1                      AMD64 generic package  
canonical-pc-linux     4.4.0-18+20160419.13-26  The ubuntu-core kernel snap  
canonical-pi2          3.2                      Raspberry Pi 2 support package  
go-example-webserver   16.04-4                  Minimal Golang webserver for snappy  
hello-world            6.0                      Hello world example  
http                   4.6692016                HTTPie in a snap  
links                  2.12-1                   Web browser running in text mode  
moon-buggy             1.0.51.9                 Drive a car across the moon  
nmap                   7.12SVN-0.4              Nmap ("Network Mapper") is a free and open source utility for network discovery and security auditing  
notes-dpm              0.0.8+snap1              Note-taking application, write down your thoughts  
shout                  0.53.0                   A self hosted web IRC client  
sshtron                1.0                      multiplayer Tron via ssh  
tor-middle-relay       0.2.7.6-6                Essential infrastructure node for Tor network  
ubuntu-calculator-app  2.1+snap3                Ubuntu Calculator application for the Unity 7 desktop  
ubuntu-clock-app       3.6+snap3                Ubuntu Clock application for the Unity 7 desktop  
ubuntu-core            16.04+20160419.20-55     The ubuntu-core OS snap  
xkcd-webserver         16.04-5                  Show random XKCD compic via a build-in webserver  

Pour installer un package logiciel enfichable, exécutez:

Sudo snap install <package-name>  

Après avoir installé les paquets, snap list vous montrera les paquets installés.

Pour plus d'informations sur toutes les commandes d'accrochage disponibles, exécutez: snap --help.

Exemple :

Sudo snap install nmap  

Résultat :

snap list
Name         Version               Developer
nmap         7.12SVN-0.4           joetalbott
ubuntu-core  16.04+20160419.20-55  canonical
4
cl-netbox