Friday, March 26, 2010

Installing 3rd party s/w

Click Be

============

mkdir -p /var/netenberg/click_be/installer/

cd /var/netenberg/click_be/

wget http://www.netenberg.com/files/click_be/free/click_be_installer.bz2

tar -xjpf click_be_installer.bz2

cd /var/netenberg/click_be/installer/

php click_be.php status

php click_be.php install

open_basedir =off
===============================


Rvskin
=========
mkdir /root/rvadmin
cd /root/rvadmin
wget http://member.rvskin.com/auto_rvskin.tgz
tar -xvzf auto_rvskin.tgz
perl auto_rvskin.pl

uninstall
-------
perl uninstall /scripts/killacct rvadmin
-----------------------
=====================

CSF
--------

/etc/csf

wget http://www.configserver.com/free/csf.tgz
tar -xvzf csf.tgz
sh install.sh

in csf.conf change TESTING = "0"

csf --update
---------


SVN
=========
use ful links
http://www.tonyspencer.com/2007/03/02/setup-a-subversion-server-in-4-minutes/

http://articles.slicehost.com/2007/9/5/introduction-to-svnserve


Setup a Subversion Server in 4 Minutes Code, Linux March 2nd, 2007
You are going to need to type fast but I think you can do it in 4 minutes.  These are my notes on what worked for me on my Fedora core 6 with svn lib already installed by the package manager:

1. Create a Repository
svnadmin create /svnrepos

2. Create a SVN User
vi /svnrepos/conf/svnserve.conf
In that file add these three lines:
anon-access = none
auth-access = write
password-db = passwd
Create a password file:
vi /svnrepos/conf/passwd
In that file add a line for your user:
# add users in the format : user = password
tony = mypassword
3. Import Your Project
(assuming you’ve put your project files in /projects/myrailsproject)
svn import /projects/myrailsproject file:///svnrepos/myrailsproject
4. Start the SVN Server as Daemon
svnserve -d
Done! You should now have a svn server running with one project named myrailsproject.
Try checking it out of the repository:
svn co svn://192.168.0.2/svnrepos/myyrailsproject
Since we set anon-access to none you should be prompted for username and password which you created in the file /svnrepos/conf/passwd.

No comments:

Post a Comment