Hi,thank your guys. :)<br>BTW, is there a graphic ui based svn server in ubuntu like VisualSVN Server in windows?<br><br><div class="gmail_quote">2010/12/5 Clint Byrum <span dir="ltr"><<a href="mailto:clint@ubuntu.com">clint@ubuntu.com</a>></span><br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div><div></div><div class="h5">On Sun, 2010-12-05 at 19:07 +0800, maven apache wrote:<br>
> hi:<br>
> I use sudo apt-get install subversion to intall the svn.<br>
> I just woder if it is the server side or client side?<br>
><br>
> If it is a client side,I need a server side also. However my ubuntu is<br>
> working under off-line model,so any ideas to install a svn server ?(I<br>
> prefer to svnserver rather than apache server)<br>
><br>
<br>
</div></div>The subversion package does include 'svnserve', which is the name of the<br>
command to run. If you want to run it at boot, you can put this in a<br>
file named /etc/init/svnserve.conf<br>
<br>
start on (local-filesystems and net-device-up IFACE!=lo)<br>
stop on runlevel [016]<br>
<br>
respawn<br>
<br>
exec /bin/su -c 'exec /usr/bin/svnserve --foreground --daemon --config-file=/your/repo/conf/svnserve.conf' user_who_owns_your_repo<br>
<br>
And run 'sudo start svnserve'<br>
<br>
</blockquote></div><br>