forked from stec-inc/EnhanceIO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Install.txt
43 lines (31 loc) · 1.11 KB
/
Install.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Installation steps
-------------------
Requirements
Kernel version 3.7 onwards
python 2.6.6 onwards
Run following commands as root
1) eio_cli installation
> cp cli/eio_cli /sbin/
> chmod 700 cli/eio_cli
2) Man page
Copy the eio_cli.gz file under the man8 subdirectory of man directory (/usr/share/man/man8/).
3) Driver installation
1. Let's say kernel sources are located at the path KERNEL_SRC and the driver has been downloaded
at the path DRIVER_REPO
Copy Driver/enhanceio dir under KERNEL_SRC/drivers/block
Apply config patch.
cd KERNEL_SRC; patch -p0 < DRIVER_REPO/Driver/config.patch
2. Regenerate config file
Run make menuconfig and save the configuration
3. To compile:
> cd KERNEL_SRC
> make modules
4. To install modules
> make modules_install
4) manually load modules by running
modprobe enhanceio_fifo
modprobe enhanceio_lru
modprobe enhanceio
You can now create enhanceio caches using the utility eio_cli. Please refer
to Documents/Persistence.txt for information about making a cache
configuration persistent across reboot.