While exploring the use of code metric tools for our current architecture, I came upon this fantastic intro to NDepend, by Andre Loker - an absolute must-read:
http://blog.andreloker.de/post/2008/07/08/NDepend-code-metrics-at-your-service.aspx
Yoinked from dotnot.org: all you need to do is dump the repository, like so:
svnadmin dump /path/to/repo > reponame.dump
tar zcf reponame.tgz reponame.dump
Copy it to the other server, in whatever way suits, eg:
scp reponame.tgz hostname:/path/to/new/repo
Then set up the new repo on the target server:
cd /path/to/new
svnadmin create reponame
tar zxf reponame.tgz
svnadmin load reponame < reponame.dump
That’s it! Piece of cake