예전것/Linux Basic2010. 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.

'예전것 > Linux Basic' 카테고리의 다른 글

Ubuntu 10.04 LTS intall  (0) 2012.02.04
vi setting  (0) 2010.04.02
SetUID를 이용한 해킹  (0) 2009.09.07
find 옵션에 +,- 붙은것들  (0) 2009.09.07
SETSUID에 대하여  (0) 2009.09.07