Hello
Sous debian la commande sympathique pour rechercher un paquet après avoir fait un :
Pour raffraichir la liste de paquets disponibles
C'est:
1 2
| apt-cache search nom_paquet
(où la chaîne nom_paquet peut être tout ou partie du nom du paquet) |
Ta chaîne peut être aussi une expression régulière
Exemple rechercher tous les paquets dont le nom commence par "abcd"
Tu peux aussi avoir plusieurs chaînes de recherche
apt-cache search chaîne1 chaîne2 ...
Sinon glibc tu peux être déjà sûr qu'il est installé sur debian car c'est un élément essentiel du fonctionnement de ta distrib debian sauf qu'il y a des chances que le paquet sous debian s'appelle libc6
Quelques exemples:
Recherche de gcc
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| apt-cache search ^gcc
me renvoie la liste des paquets dispos suivants:
gcc - The GNU C compiler
gcc-2.95 - The GNU C compiler
gcc-2.95-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
gcc-3.3 - The GNU C compiler
gcc-3.3-base - The GNU Compiler Collection (base package)
gcc-3.4 - The GNU C compiler
gcc-3.4-base - The GNU Compiler Collection (base package)
gcc-4.1 - The GNU C compiler
gcc-4.1-base - The GNU Compiler Collection (base package)
gcc-4.1-locales - The GNU C compiler (native language support files)
gcc-4.1-source - Source of the GNU Compiler Collection
... |
Recherche de libstdc++
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| apt-cache search stdc++
me renvoie:
lib64stdc++6 - The GNU Standard C++ Library v3 (64bit)
lib64stdc++6-4.1-dbg - The GNU Standard C++ Library v3 (debugging files)
libg++2.8.1.3-dbg - The GNU C++ extension library - debugging files
libgmp3-dev - Multiprecision arithmetic library developers tools
libstdc++2.10-dbg - The GNU stdc++ library (debugging files)
libstdc++2.10-dev - The GNU stdc++ library (development files)
libstdc++2.10-glibc2.2 - The GNU stdc++ library
libstdc++5 - The GNU Standard C++ Library v3
libstdc++5-3.3-dbg - The GNU Standard C++ Library v3 (debugging files)
libstdc++5-3.3-dev - The GNU Standard C++ Library v3 (development files)
libstdc++5-3.3-doc - The GNU Standard C++ Library v3 (documentation files)
libstdc++5-3.3-pic - The GNU Standard C++ Library v3 (shared library subset kit)
libstdc++6 - The GNU Standard C++ Library v3
libstdc++6-4.1-dbg - The GNU Standard C++ Library v3 (debugging files)
libstdc++6-4.1-dev - The GNU Standard C++ Library v3 (development files)
libstdc++6-4.1-doc - The GNU Standard C++ Library v3 (documentation files)
libstdc++6-4.1-pic - The GNU Standard C++ Library v3 (shared library subset kit)
libstdc++6-dbg - The GNU Standard C++ Library v3 (debugging files)
libstdc++6-dev - The GNU Standard C++ Library v3 (development files)
libstdc++6-doc - The GNU Standard C++ Library v3 (documentation files)
libstdc++6-pic - The GNU Standard C++ Library v3 (shared library subset kit) |
Une fois trouvé le paquet qui fera ton bonheur:
1 2 3
| apt-get install nom_du_paquet
ou
aptitude install nom_du_paquet |
et les dépendances comme dans tout bon gestionnaire de paquets seront résolues automatiquement
Partager