web-dev-qa-db-fra.com

installer les outils vmware: emplacement du binaire GCC?

ok donc j'essaie de ne pas installer les outils VMware à partir de la ligne de commande avec le programme d'installation tar en utilisant ces instructions: http://www.vmware.com/support/ws5/doc/ws_newguest_tools_linux.html#wp1118025

J'installe des outils vmware sur lubuntu que j'ai en cours d'exécution en tant que machine virtuelle utilisant vmplayer. Après l'étape 5, lorsque vous répondez aux questions de configuration à l'écran, il est indiqué

the installatinon of vmware tools 9.2.3 build-1031360 for linux completed sucessfully.  you can devide to 
remove this software form your system at any time by invoking the following command:
"/usr/bin/vmware-uninstall-tools.pl".
before running vmware tools for the first time, you need to configure it by invoking  the following command:
"usr/bin/vmware-config-tools.pl". Do you want this program to invoke the command for  you now?
[yes]

J'ai appuyé sur Entrée et accepté la valeur par défaut [oui] et maintenant il est dit

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 "" is not valid path to the gcc binary. 
Would you like to change it? [yes]

What is the location of the gcc program on your machine?

J'ai fait

locate gcc

et j'ai trouvé qu'il y avait un dossier appelé/usr/lib/gcc, j'ai donc essayé de le mettre comme emplacement mais il est dit que le chemin "/ usr/lib/gcc" n'est pas un chemin valide vers la bibliothèque gcc. Comment savoir où se trouve le binaire gcc sur ma machine?

17
user2719875

Sudo apt-get install build-essential suffit pour le faire fonctionner.

27
Tr0n

Installer les prérequis VMware Tools pour LinuxOS:

Si vous avez RHEL/CentOS:

yum install Perl gcc make kernel-headers kernel-devel -y

Si vous avez Ubuntu/Debian:

Sudo apt-get -y install linux-headers-server build-essential
  • build-essential, installez également: dpkg-dev, g ++, gcc, lib6-dev, libc-dev, make

Extrait de: http://www.sysadmit.com/2016/01/vmware-tools-linux-instalar-requisitos.html

13
JamaLindo

J'ai trouvé la réponse. Ce que j'ai fait était le premier

Sudo apt-get install aptitude
Sudo aptitude install libglib2.0-0
Sudo aptitude install gcc-4.7 make linux-headers-`uname -r` -y

et je l'ai essayé, mais ça n'a pas marché, alors j'ai continué et j'ai fait

Sudo apt-get install build-essential
Sudo apt-get install gcc-4.7 linux-headers-`uname -r`

après avoir fait ces deux étapes et réessayé, cela a fonctionné.

5
user2719875

La saisie:/usr/bin/gcc a fonctionné pour moi.

5
sfe

pour éviter le problème avec le CDROM: Sudo nano /etc/apt/sources.list

trouvez votre cdrom et commentez-le avec #

enregistrer les modifications: "cntrl + o", puis quitter le fichier: "cntrl + x"

et essayez de réinstaller

0
dao2