Setting up a Subversion Server on Ubuntu Gutsy Gibbon server
All the required packages are available in the Ubuntu repositories.
Installing Subversion
Use apt-get:
sudo apt-get update
sudo apt-get install subversion
Creating a Repository
Let’s say you want your repository to be in /var/svn/repos, type in these commands:
cd /var
sudo mkdir svn
sudo svnadmin create /var/svn/repos
In order to control who has access to [...]