1

Does anyone know of a tutorial for setting up Trac and SVN on a Ubuntu 10.4 Server machine?

Thanks in advance!

joschi
  • 20,747
  • 3
  • 46
  • 50
Mark Szymanski
  • 169
  • 3
  • 8

2 Answers2

1

Notes on setup for trac should be in /usr/share/doc/trac after package install. These generally detail configuration that is not automatically done during installation. First file to check is README.Debian or README.Debian.gz. Use less or zless to look at them.

Trac should pull in subversion. If not, install the subversion pacakge. Documentation will be in /usr/share/doc/subversion.

BillThor
  • 27,354
  • 3
  • 35
  • 69
1

There's a chapter on installing Subversion on Ubuntu 10.04 in the official Server Guide. For Trac you can probably just install the official trac package and follow the on-screen instructions.

joschi
  • 20,747
  • 3
  • 46
  • 50
  • I followed the tutorial for installing the SVN server and I have it running (I think) but how do I import/commit/checkout? The main problem is that I don't know the URL to commit/import/checkout to/from. – Mark Szymanski Jun 12 '10 at 19:26
  • The section "Access Methods" describes several ways to access your Subversion repositories. The URL to your repository depends on the mechanism you are using (`svn://`, `svn+ssh://`, `https://`...) but most likely includes the hostname of your server and a path to your repo. ;) – joschi Jun 13 '10 at 05:40