Forum archive
install TKLBAM on CentOS 6.4
Per Liraz's recent announcement about TKLBAM 1.4 we thought we would try out the backup system with CentOS. Unfortunately being new to the Linux world, we're not quite sure how to do this.
We've downloaded what we think is the TKLBAM source code and unzipped it to a folder. In this folder we have the supplied Makefile, but no configure file. Generally when we install things from source, it requires a configure file to prepare the Makefile with the desired options (the announcement says to add the --skip-packages to disable APT integration).
So we're not sure if don't have the correct source code or if we're just missing something else. We downloaded the TKLBAM package from https://github.com/turnkeylinux/tklbam.
Can anyone give some pointers here?
Thank you!
TKLBAM doesn't have a configure file because it doesn't use autoconf. Python programs generally don't need to.
Anyhow you'll also need to install dependencies.
Something like the following instructions might work:
yum install python-docutils git python-devel gcc gcc-c++ # install librsync (needed by duplicity) git clone https://github.com/kaseya/librsync cd librsync ./configure && make install cd ../ for r in tklbam tklbam-duplicity tklbam-python-boto tklbam-squid turnkey-pylib pycurl-wrapper; do git clone https://github.com/turnkeylinux/$r done cd turnkey-pylib . INSTALL cd ../pycurl-wrapper . INSTALL cd ../tklbam-python-boto python setup.py install cd ../tklbam-squid ./configure && make install cd ../tklbam-duplicity make install cd ../tklbam make installI haven't tested this so your results may vary.