J'essaie de trouver où les webapps s'installent après les avoir acceptées avec Firefox. Cela peut m'aider lorsque je veux éliminer l'un d'eux ou modifier quelque chose.
Il existe de nombreuses façons de trouver ces informations.
1) Vous pouvez le trouver en ouvrant le .deb qui les installe.
Par exemple, je choisis le .deb de celui de YouTube à partir d'ici: https://launchpad.net/ubuntu/quantal/i386/unity-webapps-youtube/2.4.1 Ouvrez-le avec le gestionnaire d'archives , puis recherchez le fichier DEBIAN/md5sums et ouvrez-le avec un éditeur de texte. Il est
d5bbca2bb83fe5cc16a92e35bf75b26f usr/share/doc/unity-webapps-youtube/changelog.gz
a4b9f911211d21db51342de237b5dc5c usr/share/doc/unity-webapps-youtube/copyright
c571c6d100d418b65bcacbb4f78d46d6 usr/share/icons/hicolor/48x48/apps/unity-webapps-youtube.png
0d55340014577968398aab8fcee7409c usr/share/icons/unity-webapps-applications/128/apps/unity-webapps-youtube.png
c571c6d100d418b65bcacbb4f78d46d6 usr/share/icons/unity-webapps-applications/48/apps/unity-webapps-youtube.png
0e95c345e7aa4a96ac76a94df2c0071a usr/share/icons/unity-webapps-applications/52/apps/unity-webapps-youtube.png
a7d678d599978f9ac7bffe36d776558c usr/share/icons/unity-webapps-applications/64/apps/unity-webapps-youtube.png
58beafe67c7b136d0f157c963445c514 usr/share/unity-webapps/userscripts/unity-webapps-youtube/YouTube.user.js
5f8d5ce54c5a7c7c4cca88d5691beedd usr/share/unity-webapps/userscripts/unity-webapps-youtube/manifest.json
Ce sont les fichiers installés avec la webapp.
2) Comme alternative, vous pouvez utiliser apt-file
En utilisant simplement
$ apt-file show unity-webapps-youtube
unity-webapps-youtube: /usr/share/doc/unity-webapps-youtube/changelog.gz
unity-webapps-youtube: /usr/share/doc/unity-webapps-youtube/copyright
unity-webapps-youtube: /usr/share/icons/hicolor/48x48/apps/unity-webapps-youtube.png
unity-webapps-youtube: /usr/share/icons/unity-webapps-applications/128/apps/unity-webapps-youtube.png
unity-webapps-youtube: /usr/share/icons/unity-webapps-applications/48/apps/unity-webapps-youtube.png
unity-webapps-youtube: /usr/share/icons/unity-webapps-applications/52/apps/unity-webapps-youtube.png
unity-webapps-youtube: /usr/share/icons/unity-webapps-applications/64/apps/unity-webapps-youtube.png
unity-webapps-youtube: /usr/share/unity-webapps/userscripts/unity-webapps-youtube/YouTube.user.js
unity-webapps-youtube: /usr/share/unity-webapps/userscripts/unity-webapps-youtube/manifest.json
3) Vous pouvez obtenir le même résultat en utilisant dpkg -L
Notez que cela ne fonctionnera que si le package est déjà installé.
Quoi qu'il en soit, je ne sais pas vraiment comment vous pouvez utiliser ces informations pour les tuer;)