예전것/Linux Basic
vmware tool 설치 팁.
hangover
2010. 6. 3. 23:32
Certainly help for me – had been trying update the Kernel for hours and this put me on the right track.
Using Vmware version of OpenEmm running Centos 5.
Couple of other commands that help me solve this:
1. Install packages to build the kernel modules
yum install gcc kernel-devel
2. Check the running kernel matches the kernel headers
uname -r # running kernel
rpm -q kernel-devel # installed kernel headers
5. If the two versions do not match, run
yum -y upgrade kernel kernel-devel
reboot
7. Find out where the kernel headers are
ls -d /usr/src/kernels/$(uname -r)*/include
Sourced this from http://www.thoughtpolice.co.uk/vmware/howto/centos-5-vmware-tools-install.html
Many thanks.