<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Synology Subversion server</title>
	<atom:link href="http://rob.runtothehills.org/archives/25/feed" rel="self" type="application/rss+xml" />
	<link>http://rob.runtothehills.org/archives/25</link>
	<description>Talk is cheap. Show me the code.</description>
	<lastBuildDate>Tue, 24 Aug 2010 09:16:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Sverimuls</title>
		<link>http://rob.runtothehills.org/archives/25/comment-page-1#comment-1509</link>
		<dc:creator>Sverimuls</dc:creator>
		<pubDate>Fri, 25 Sep 2009 20:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://runtothehills.org/rob/archives/25#comment-1509</guid>
		<description>??????, ????????? ? ???? ??????? ????????????, ????? ?????????? ???? ? ???????????. ?????? ??????? ??????????? ? ????????  &lt;a href=&quot;http://rem-stroika.ru&quot; rel=&quot;nofollow&quot;&gt;??????&lt;/a&gt;
?????? ???????, ????????? ????????????? ?????, ????? ???????????? ???????????, ???????. ????, ? ????? ??????, ????? ???????? ? ? ???? ???????? ????? ???????? ???? ?????? ? ??????. ?????? ????????, ???????, ??? ??? ??? ????, ??? ? ??????? ??????? ? ?? ?????????? ???? ?????? ?? ????? ? ????. ? ???? ?????? ?? ?????, ? ?????? ?????? ??????????? ??????. ??? ? ???? ??????? ??????, ??????????.</description>
		<content:encoded><![CDATA[<p>??????, ????????? ? ???? ??????? ????????????, ????? ?????????? ???? ? ???????????. ?????? ??????? ??????????? ? ????????  <a href="http://rem-stroika.ru" rel="nofollow">??????</a><br />
?????? ???????, ????????? ????????????? ?????, ????? ???????????? ???????????, ???????. ????, ? ????? ??????, ????? ???????? ? ? ???? ???????? ????? ???????? ???? ?????? ? ??????. ?????? ????????, ???????, ??? ??? ??? ????, ??? ? ??????? ??????? ? ?? ?????????? ???? ?????? ?? ????? ? ????. ? ???? ?????? ?? ?????, ? ?????? ?????? ??????????? ??????. ??? ? ???? ??????? ??????, ??????????.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rullbandspelare</title>
		<link>http://rob.runtothehills.org/archives/25/comment-page-1#comment-1504</link>
		<dc:creator>Rullbandspelare</dc:creator>
		<pubDate>Wed, 03 Jun 2009 19:30:50 +0000</pubDate>
		<guid isPermaLink="false">http://runtothehills.org/rob/archives/25#comment-1504</guid>
		<description>Thanks!
Saved me many hours today!</description>
		<content:encoded><![CDATA[<p>Thanks!<br />
Saved me many hours today!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rob</title>
		<link>http://rob.runtothehills.org/archives/25/comment-page-1#comment-1500</link>
		<dc:creator>rob</dc:creator>
		<pubDate>Sun, 01 Mar 2009 10:39:23 +0000</pubDate>
		<guid isPermaLink="false">http://runtothehills.org/rob/archives/25#comment-1500</guid>
		<description>Hi Andrew!
NIce to see that the article is still usefull!, its such a long time ago since I&#039;ve actually fiddled with my synology box. I now have SVN hosting at Dreamhosts - makes more sense in my current circumstances, but the local SVN server at home is still used, and my DS106j is still going strong. Synology really do rock!
Thanks for reading!</description>
		<content:encoded><![CDATA[<p>Hi Andrew!<br />
NIce to see that the article is still usefull!, its such a long time ago since I&#8217;ve actually fiddled with my synology box. I now have SVN hosting at Dreamhosts &#8211; makes more sense in my current circumstances, but the local SVN server at home is still used, and my DS106j is still going strong. Synology really do rock!<br />
Thanks for reading!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Freemantle</title>
		<link>http://rob.runtothehills.org/archives/25/comment-page-1#comment-1499</link>
		<dc:creator>Andrew Freemantle</dc:creator>
		<pubDate>Sat, 28 Feb 2009 17:31:34 +0000</pubDate>
		<guid isPermaLink="false">http://runtothehills.org/rob/archives/25#comment-1499</guid>
		<description>Hi Rob,

I&#039;d just like to say a huge thanks for posting these instructions - they&#039;re fantastic!


For anyone wanting to get their Synology SVN Server to start automatically on boot or reboot here&#039;s how I got mine working..

I wasn&#039;t brave enough to edit the /etc/rc file  ;o)


1. Log into your Diskstation (telnet or ssh), as &#039;root&#039;, and issue the following command:

cp /usr/syno/etc/rc.d/S95sshd.sh /usr/syno/etc/rc.d/S99svnserve.sh


2. then edit the new file with the following command:

nano /usr/syno/etc/rc.d/S99svnserve.sh

3. delete all of the contents of the file (keep pressing Ctrl + K to cut each line), and paste in all of the following:

[from here - not including this line]
#!/bin/sh
# svnserve script for the Synology DiskStation
# inspired by http://rob.runtothehills.org/archives/25
# this script written by Andrew Freemantle (http://www.fatlemon.co.uk)

case &quot;$1&quot; in

stop)
        echo &quot;Stop svnserve...&quot;
        killall svnserve &gt; /dev/null 2&gt;&amp;1
        ;;

start)
        # don&#039;t care if svnserve is already running, just kick of another one
        export PATH=$PATH:/opt/bin:/opt/sbin
        svnserve -d -r /volume1/svn/repository &gt; /dev/null 2&gt;&amp;1 &amp;
        echo &quot;Start SSH...&quot;
        ;;

restart)
        $0 stop
        sleep 1
        $0 start
        ;;
*)
        echo &quot;usage: $0 { start &#124; stop &#124; restart}&quot; &gt;&amp;2
        exit 1
        ;;

esac
[to here - not including this line]



Thanks again Bob, and I hope this helps someone else save a couple of hours  ;o)</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>I&#8217;d just like to say a huge thanks for posting these instructions &#8211; they&#8217;re fantastic!</p>
<p>For anyone wanting to get their Synology SVN Server to start automatically on boot or reboot here&#8217;s how I got mine working..</p>
<p>I wasn&#8217;t brave enough to edit the /etc/rc file  ;o)</p>
<p>1. Log into your Diskstation (telnet or ssh), as &#8216;root&#8217;, and issue the following command:</p>
<p>cp /usr/syno/etc/rc.d/S95sshd.sh /usr/syno/etc/rc.d/S99svnserve.sh</p>
<p>2. then edit the new file with the following command:</p>
<p>nano /usr/syno/etc/rc.d/S99svnserve.sh</p>
<p>3. delete all of the contents of the file (keep pressing Ctrl + K to cut each line), and paste in all of the following:</p>
<p>[from here - not including this line]<br />
#!/bin/sh<br />
# svnserve script for the Synology DiskStation<br />
# inspired by <a href="http://rob.runtothehills.org/archives/25" rel="nofollow">http://rob.runtothehills.org/archives/25</a><br />
# this script written by Andrew Freemantle (<a href="http://www.fatlemon.co.uk" rel="nofollow">http://www.fatlemon.co.uk</a>)</p>
<p>case &#8220;$1&#8243; in</p>
<p>stop)<br />
        echo &#8220;Stop svnserve&#8230;&#8221;<br />
        killall svnserve &gt; /dev/null 2&gt;&amp;1<br />
        ;;</p>
<p>start)<br />
        # don&#8217;t care if svnserve is already running, just kick of another one<br />
        export PATH=$PATH:/opt/bin:/opt/sbin<br />
        svnserve -d -r /volume1/svn/repository &gt; /dev/null 2&gt;&amp;1 &amp;<br />
        echo &#8220;Start SSH&#8230;&#8221;<br />
        ;;</p>
<p>restart)<br />
        $0 stop<br />
        sleep 1<br />
        $0 start<br />
        ;;<br />
*)<br />
        echo &#8220;usage: $0 { start | stop | restart}&#8221; &gt;&amp;2<br />
        exit 1<br />
        ;;</p>
<p>esac<br />
[to here - not including this line]</p>
<p>Thanks again Bob, and I hope this helps someone else save a couple of hours  ;o)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rob</title>
		<link>http://rob.runtothehills.org/archives/25/comment-page-1#comment-1390</link>
		<dc:creator>rob</dc:creator>
		<pubDate>Wed, 21 Jan 2009 22:01:32 +0000</pubDate>
		<guid isPermaLink="false">http://runtothehills.org/rob/archives/25#comment-1390</guid>
		<description>Hi Hugo.
I no longer really mess with my diskstation - i&#039;ve got hosted a SVN server with dreamhosts, and its been over a year since i fiddle with it.
Sorry cant help!
Cheers</description>
		<content:encoded><![CDATA[<p>Hi Hugo.<br />
I no longer really mess with my diskstation &#8211; i&#8217;ve got hosted a SVN server with dreamhosts, and its been over a year since i fiddle with it.<br />
Sorry cant help!<br />
Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hugo</title>
		<link>http://rob.runtothehills.org/archives/25/comment-page-1#comment-1387</link>
		<dc:creator>Hugo</dc:creator>
		<pubDate>Mon, 19 Jan 2009 22:16:43 +0000</pubDate>
		<guid isPermaLink="false">http://runtothehills.org/rob/archives/25#comment-1387</guid>
		<description>Hi Rob,

I&#039;m having the same error about libuuid.so.1
I have an DS209+ 
All my packages are up-to-date and I&#039;ve rebooted but to no avail.
Searching on the internet revealed libuuid.so.1 having something to do with the ext2 package.
I think I should not be fiddling with that?
btw I do not have any libuuid.* file on the box.

Hope you can help!

Hugo</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>I&#8217;m having the same error about libuuid.so.1<br />
I have an DS209+<br />
All my packages are up-to-date and I&#8217;ve rebooted but to no avail.<br />
Searching on the internet revealed libuuid.so.1 having something to do with the ext2 package.<br />
I think I should not be fiddling with that?<br />
btw I do not have any libuuid.* file on the box.</p>
<p>Hope you can help!</p>
<p>Hugo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rob</title>
		<link>http://rob.runtothehills.org/archives/25/comment-page-1#comment-1287</link>
		<dc:creator>rob</dc:creator>
		<pubDate>Wed, 23 Apr 2008 18:55:53 +0000</pubDate>
		<guid isPermaLink="false">http://runtothehills.org/rob/archives/25#comment-1287</guid>
		<description>@Ling - No problem ;) I&#039;ll add that to my virtual beer list :)
@cooky - I don&#039;t know why it doesn&#039;t work, I don&#039;t have any other Syno boxes, but the tutorial does say its for the DS106J. If I ever upgrade i&#039;ll look into this, but its kind of difficult to diagnose when i dont have a box, plus i&#039;m not really a unix head, so I couldn&#039;t offer the even the vaguest piece of useful advice. Sorry!</description>
		<content:encoded><![CDATA[<p>@Ling &#8211; No problem <img src='http://rob.runtothehills.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  I&#8217;ll add that to my virtual beer list <img src='http://rob.runtothehills.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
@cooky &#8211; I don&#8217;t know why it doesn&#8217;t work, I don&#8217;t have any other Syno boxes, but the tutorial does say its for the DS106J. If I ever upgrade i&#8217;ll look into this, but its kind of difficult to diagnose when i dont have a box, plus i&#8217;m not really a unix head, so I couldn&#8217;t offer the even the vaguest piece of useful advice. Sorry!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cooky</title>
		<link>http://rob.runtothehills.org/archives/25/comment-page-1#comment-1286</link>
		<dc:creator>cooky</dc:creator>
		<pubDate>Tue, 22 Apr 2008 23:32:39 +0000</pubDate>
		<guid isPermaLink="false">http://runtothehills.org/rob/archives/25#comment-1286</guid>
		<description>Sorry for posting. 
It does not work for Marvell based models.
You could/should mention it in your very good docu.</description>
		<content:encoded><![CDATA[<p>Sorry for posting.<br />
It does not work for Marvell based models.<br />
You could/should mention it in your very good docu.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cooky</title>
		<link>http://rob.runtothehills.org/archives/25/comment-page-1#comment-1285</link>
		<dc:creator>cooky</dc:creator>
		<pubDate>Tue, 22 Apr 2008 22:22:44 +0000</pubDate>
		<guid isPermaLink="false">http://runtothehills.org/rob/archives/25#comment-1285</guid>
		<description>Thx for your work. I read it and I just bought a DS-107+.
I followed your steps (but except telnet I used the synology patch ssh).
When I start ipkg the following error appears:

DiskStation&gt; ipkg update
/opt/bin/ipkg: /opt/bin/ipkg: 1: Syntax error: &quot;(&quot; unexpected

Any idea?</description>
		<content:encoded><![CDATA[<p>Thx for your work. I read it and I just bought a DS-107+.<br />
I followed your steps (but except telnet I used the synology patch ssh).<br />
When I start ipkg the following error appears:</p>
<p>DiskStation&gt; ipkg update<br />
/opt/bin/ipkg: /opt/bin/ipkg: 1: Syntax error: &#8220;(&#8221; unexpected</p>
<p>Any idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ling</title>
		<link>http://rob.runtothehills.org/archives/25/comment-page-1#comment-1283</link>
		<dc:creator>Ling</dc:creator>
		<pubDate>Sat, 19 Apr 2008 11:14:36 +0000</pubDate>
		<guid isPermaLink="false">http://runtothehills.org/rob/archives/25#comment-1283</guid>
		<description>Hi Rob,

Thanks for this excellent tutorial. I&#039;ve managed to setup telnet and svnserve on my cubestation 406, with no problems!

Repository setup and my first C# project checked in too! 

This is great! I&#039;d buy you a beer if you were in Hong kong!

Ling</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>Thanks for this excellent tutorial. I&#8217;ve managed to setup telnet and svnserve on my cubestation 406, with no problems!</p>
<p>Repository setup and my first C# project checked in too! </p>
<p>This is great! I&#8217;d buy you a beer if you were in Hong kong!</p>
<p>Ling</p>
]]></content:encoded>
	</item>
</channel>
</rss>
