SVN on VPS

Posted on February 10, 2009
Filed Under Linux Hosting, VPS hosting |

SVN stands for Subversion. SVN is the place where the latest, not-yet-released version of OpenKore is stored.
It will become the next release version of OpenKore. OpenKore SVN version is refered to the OpenKore version as it is stored in the SVN repository.

By following these simple steps you can install SVN on your Linux VPS:-

First of all you will need to login to your VPS through SSH:

Then run the commands given below:

cd /usr/local/src/

wget http://subversion.tigris.org/downloa…n-1.4.5.tar.gz
wget http://subversion.tigris.org/downloa…s-1.4.5.tar.gz
wget http://www.sqlite.org/sqlite-3.5.2.tar.gz

tar xzf subversion-1.4.5.tar.gz
tar xzf subversion-deps-1.4.5.tar.gz
tar xzf sqlite-3.5.2.tar.gz

cd sqlite-3.5.2
./configure
make
make install
./sqlite3
.help
.exit
cd ..

cd subversion-1.4.5
./configure
make
make install
svn –version

Now SVN is successfully installed on your VPS:).

Update me when site is updated

Comments

Leave a Reply