OS/Linux
vmware CentOS 5.3 vmware tool 설치시 오류
우럭망둥이
2011. 3. 7. 14:12
vmware CentOS 5.3 vmware tool 설치시 오류
대충 오류 내용은
커널의 cc 라이브러리가 없다는 것이였다.
그래서 온갖 include 를 다 넣어봐도 안되길래
구글링 했다
한방에 install success 우하하
The first step after a fresh install of a CentOS 5.3 server is too install the packages gcc and kernel-devel. When these packages are installed, update them and reboot of the VM:
yum install gcc kernel-devel –y
yum update –y
reboot
Now we have to create a new folder so we can mount the VMware Tools cd-rom.
mkdir /media/cdrom –p
Start the VMware Tools Installer via the GUI:
Mount the cd-rom:
mount /dev/cdrom /media/cdrom
create a folder and copy the tar.gz file from the cd-rom to the folder:
mkdir /root/tarz –p
cp /media/cdrom/VMwareTools-4.0.0-xxxxxx.tar.gz /root/tarz/
Open the folder and extract the tar.gz file:
cd /root/tarz
tar zxvf VMwareTools-4.0.0-xxxxxx.tar.gz
Open the vmware-tools-distrib folder and start the installer:
cd vmware-tools-distrib
./vmware-install.pl
You can change the vnic to vmxnet via the following commands:
/etc/init.d/network stop
rmmod pcnet32
rmmod vmxnet
modprobe vmxnet
/etc/init.d/network start
The final step is to reboot the VM.
출처
http://ict-freak.nl/2009/10/03/how-to-install-vmware-tools-on-centos-5-3/