forked from facebookarchive/flashcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME-CentOS5
16 lines (12 loc) · 827 Bytes
/
README-CentOS5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Vadim T (Percona) wrote an initial guide on getting flashcache building on CentOS, which was extremely helpful.
Based on that, I've modified the Makefiles to make building on CentOS as easy as possible. Here's the steps you'll
need to follow to build on CentOS:
- Make sure you have the CentOS EPEL repo. (http://fedoraproject.org/wiki/EPEL)
- Make sure you have the CentOS source repo. (http://mirror.centos.org/centos/$releasever/updates/SRPMS/)
- Install prerequisite build packages:
yum install dkms gcc make yum-utils kernel-devel
- CentOS kernel-headers/devel packages don't include internal headers, we've got to configure the full source:
yumdownloader --source kernel-`uname -r`
sudo rpm -ivh kernel-`uname -r`.src.rpm
Now the updated Makefiles should work correctly.
Graeme Humphries <graeme@sudo.ca>