Debian squeezeにVMWare Workstation 7.1.1 build-282343からVMWare Toolsをインストールすると、gccパスが無効になる


16

Debian SqueezeにVMWareツールをインストールしようとしています。

私のエラー:

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 make

ii  make                                 3.81-8                               An utility for Directing compilation.

dpkg -l | grep 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

whereis gcc

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

5
libglib2.0-0もインストールされていることを確認してください。

回答:


20

このコマンドを実行すると、問題が修正されました。

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

@WarrenP makeは、個別のコマンドではなく、インストールする必要があるパッケージの1つです(編集履歴、リビジョン4を参照)。編集を元に戻しました。
インドレック

5

ギヨームがOPのコメントで言ったように:

sudo aptitude install libglib2.0-0

Debianのクリーンインストールでも同じ問題がありました。ライブラリが欠落していました。
CSchulz
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.