web-dev-qa-db-fra.com

Chemin de GCC non valide lors de l'installation de VMware Tools à partir de VMware Workstation 7.1.1 Build-282343 sur Debian Squeeze

J'essaie d'installer VMware Tools sur Debian Squeeze.

Mon erreur:

Before you can compile modules, you need to have the following installed... 

make
gcc
kernel headers of the running kernel

Searching for GCC...
The path "/usr/bin/gcc" is not valid path to the gcc binary.
Would you like to change it? [yes] 

uname -a:

Linux debian 2.6.32-5-686 #1 SMP Sat Sep 18 02:14:45 UTC 2010 i686 GNU/Linux

dpkg -l | grep faire

ii  make                                 3.81-8                               An utility for Directing compilation.

dpkg -l | gcc GCC

ii  gcc                                  4:4.4.4-2                            The GNU C compiler
ii  gcc-4.4                              4.4.4-8                              The GNU C compiler
ii  gcc-4.4-base                         4.4.4-8                              The GNU Compiler Collection (base package)
ii  libgcc1                              1:4.4.4-8                            GCC support library

où gcc

gcc: /usr/bin/gcc /usr/lib/gcc
16

Exécuter cette commande fixe le problème:

Sudo aptitude install gcc-4.3 make linux-headers-`uname -r` -y
20

Comme Guillaume a dit dans le commentaire de l'Op:

Sudo aptitude install libglib2.0-0
5
qwertzguy