web-dev-qa-db-ja.com

VMwareツールのインストール:GCCバイナリの場所?

わかりましたので、これらの指示を使用してtarインストーラーでコマンドラインからVMwareツールをisntallしようとしています: http://www.vmware.com/support/ws5/doc/ws_newguest_tools_linux.html#wp1118025

Vmplayerを使用して仮想マシンとして実行しているlubuntuにvmwareツールをインストールしています。手順5の後、画面上の構成の質問に答えると、

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]

Enterキーを押してデフォルトの[yes]値を受け入れたところ、

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?

やった

locate gcc

/ usr/lib/gccというフォルダーがあることがわかったので、それをロケーションとして配置しようとしましたが、パス「/ usr/lib/gcc」はgccライブラリーへの有効なパスではないということです。マシン上のgccバイナリがどこにあるかを知るにはどうすればよいですか?

17
user2719875

Sudo apt-get install build-essentialはそれを機能させるのに十分です。

27
Tr0n

LinuxOS用のVMware Toolsの前提条件をインストールします。

RHEL/CentOSがある場合:

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

Ubuntu/Debianを使用している場合:

Sudo apt-get -y install linux-headers-server build-essential
  • ビルド必須、またインストール:dpkg-dev、g ++、gcc、lib6-dev、libc-dev、make

抽出元: http://www.sysadmit.com/2016/01/vmware-tools-linux-instalar-requisitos.html

13
JamaLindo

答えを見つけました。私がしたことは最初でした

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

試してみましたが、うまくいきませんでした。

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

これらの2つの手順を実行し、再試行した後、機能しました。

5
user2719875

入力:/ usr/bin/gccは私のために働いた。

5
sfe

cDROMの問題を回避するには:Sudo nano /etc/apt/sources.list

cDROMを見つけて、#でコメントします

変更を保存: "cntrl + o"、ファイルを終了: "cntrl + x"

そして、もう一度インストールしてみてください

0
dao2