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
|
Installation Documentation:
##############################################################################
Linux and RPMs
##############################################################################
The easiest was for Linux users is to install the RPM. You can download the
latest RPM from http://www.fodder.org/cksfv. After downloading the RPM su to
root and type:
# rpm -Uvh cksfv-*.rpm
##############################################################################
Compile your own
##############################################################################
If you want to compile your own and install it yourself all you need to do is:
1. download the latest source at http://www.fodder.org/cksfv.
2. untar and go into the new directory:
$ tar zxf cksfv-*.tar.gz; cd cksfv-*
3. make the program:
$ gmake
4. install the program as root:
# gmake install
##############################################################################
Configure the installation path
##############################################################################
The default path for installation is /usr/local/bin. If you want to change the
path for installation, edit the Makfile under the source directory.
|