| Securing and Optimizing Linux: RedHat Edition -A Hands on Guide | ||
|---|---|---|
| Prev | Chapter 29. Software -Network Server, web/Apache | Next | 
Move into the new mm directory and type the following commands on your terminal:
| 
        ./configure \
        --disable-shared  \
        --prefix=/usr
       | 
Disable shared libraries.
Now, we must compile and install MM Shared Memory Library in the server:
| 
        [root@deep ]/mm-1.1.2# make 
        [root@deep ]/mm-1.1.2# make test 
        [root@deep ]/mm-1.1.2# make install 
       | 
Please do Cleanup later:
| 
        [root@deep /]# cd /var/tmp
        [root@deep ]/tmp# rm -rf mm-version/ mm-version.tar.gz
       | 
Further documentation, for more details there are several man pages you can read:
Shared Memory Library
MM library configuration/build utility
These are the files installed by the program MM on your system.
| /usr/bin/mm-config | 
| /usr/include/mm.h | 
| /usr/lib/libmm.la | 
| /usr/lib/libmm.a | 
| /usr/man/man1/mm-config.1 | 
| /usr/man/man3/mm.3 |