Navigation
Records in this category
- How to install SVN (subversion) on Bluehost/Hostmonster etc.?
- How to use SVN to access the projects?
- How to install MediaWiki on hosting servers like Bluehost etc.?
- Can I install LaTeX/TeX systems on a shared host like BlueHost?
- Why latexrender based on LaTeX does not work in my WordPress/blog?
- Can I install latex2html on a shared host?
- How to use latex2html to convert my paper to webpages?
- What if I forgot the username and password for logging Ubuntu....
- A list of commonly used Linux commands/tips...
- How to enable math on MediaWiki?
- How to resolve this problem: Failed to parse (PNG conversion failed; check for correct installation of latex, dvips, gs, and convert) in MediaWiki when I try to enable math?
- Error "Nothing to build for project XXX" when using Eclipse CDT?
- Eclipse failed to launch, giving the error message "Launcher unable to locate companion shared library", how to resolve it?
- Failed to parse (Can't write to or create math temp directory) when enabling math on MediaWiki, what is the problem?
Tags
Sticky FAQs
Education » Computer Science » Open Source Projects
How to install SVN (subversion) on Bluehost/Hostmonster etc.?
In general, we have to install APR and APR-util with SVN. In this case, we also install neon, an HTTP and WebDAV client library, with a C interface.
First, make sure that SSH connection is enabled under your target account.
Then, download and configure the script for installation. You can directly copy the following commands to run through SSH.
cd ~
mkdir src
cd ~/src
wget http://mirror.csclub.uwaterloo.ca/apache/apr/apr-util-1.3.4.tar.gz
wget http://mirror.csclub.uwaterloo.ca/apache/apr/apr-1.3.3.tar.gz
wget http://subversion.tigris.org/downloads/subversion-1.5.5.tar.gz
wget http://www.webdav.org/neon/neon-0.28.3.tar.gz
tar -xzf apr-util-1.3.4.tar.gz
tar -xzf apr-1.3.3.tar.gz
tar -xzf subversion-1.5.5.tar.gz
tar -xzf neon-0.28.3.tar.gz
cd ~/src/apr-1.3.3
./configure --prefix=$HOME LDFLAGS="-L/lib64"
make
make install
cd ~/src/apr-util-1.3.4
./configure --prefix=$HOME --with-apr=$HOME LDFLAGS="-L/lib64"
make
make install
cd ~/src/neon-0.28.3
./configure --enable-shared --prefix=$HOME LDFLAGS="-L/lib64"
make
make install
cd ~/src/subversion-1.5.5
./configure --prefix=$HOME
make
make install
Please note that for subversion configuration, we don't need to installberkeley-db, which might cause a complaint. However, it will not cause any error. Originally, most users use ./configure --prefix=$HOME --without-berkeley-db --with-zlib --with-ssl --without-apxs, but I have problems in using --with-zlib, so I dropped all the options except the prefix, which worked as well.
If you encounter no problem following previous steps, then you are done. Otherwise, check this link for more information.
My installed SVN repository is accessible here.
Tags: installation
Related entries:
- How to use SVN to access the projects?
- How to install MediaWiki on hosting servers like Bluehost etc.?
- Can I install LaTeX/TeX systems on a shared host like BlueHost?
- Can I install latex2html on a shared host?
- Why wget on Linux cannot download a file that can be downloaded by firefox, etc.?
Last update: 2009-03-19 14:38
Author: Admin
Revision: 1.5
You can comment this FAQ
Comment of admin:
Hi Ansgar,
You didn't see my repository coz I deleted them already. Could you let me know the specific problem you had?
Added at: 2009-04-14 16:33
Comment of Ansgar:
thanks for the instructions. but I have tried this and I do not seem to be able to access the repository. I also tried to access your reposotiry at http://wujiewen.com/svn but that fails.
Added at: 2009-04-14 14:53
Comment of yoyogame:
fgbfg
Added at: 2009-12-09 03:21