<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=2870&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / How install SVN Subversion server on DEVUAN ?]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=2870</link>
		<description><![CDATA[The most recent posts in How install SVN Subversion server on DEVUAN ?.]]></description>
		<lastBuildDate>Wed, 05 Jun 2019 05:21:41 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: How install SVN Subversion server on DEVUAN ?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=16343#p16343</link>
			<description><![CDATA[<p>The easiest way is gitea or gogs for git (download and run it at server side).</p><p>However, if you want subversion, you can install FUSE (version for OS X is here: <a href="https://osxfuse.github.io/)" rel="nofollow">https://osxfuse.github.io/)</a>, mount remote repository as filesystem (for example, sshfs), then use suitable GUI for SVN and work with repository as local one. You don&#039;t need server for that. It&#039;s not the best way but it&#039;s fast, easy and dirty.</p>]]></description>
			<author><![CDATA[dummy@example.com (ToxicExMachina)]]></author>
			<pubDate>Wed, 05 Jun 2019 05:21:41 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=16343#p16343</guid>
		</item>
		<item>
			<title><![CDATA[Re: How install SVN Subversion server on DEVUAN ?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=16338#p16338</link>
			<description><![CDATA[<p>Hm, do you mean you want a Web interface for browsing the remote repositories?</p><p>I would believe the &quot;normal&quot; command line access would simply draw upon <span class="bbc">ssh</span>. Perhaps this &quot;random&quot; page<br /><a href="http://www.startupcto.com/server-tech/subversion/setting-up-svn" rel="nofollow">http://www.startupcto.com/server-tech/s … ing-up-svn</a><br />can assist you. Those instructions are for CentOS, but to me it looked like you&#039;ll only need some rather thin sanity glasses to make good use of them. I&#039;m not actually familiar with the needs of <span class="bbc">svn</span>, but at a first glance, you merely need to install the <span class="bbc">subversion</span> package, which includes the <span class="bbc">svnserve</span> program that a <span class="bbc">svn+ssh:</span> client operation will want to run. And then of course maintain the &quot;s&quot; bit on the repository directories.</p><p>Though I can see that there exist some &quot;apache-subversion&quot; packages in the distribution, so there probably are ways of having a set up through an apache server as well. I suppose <span class="bbc">svn</span> has been around long enough to attract a plethora of round-about ways to achieve the thing; perhaps many with useful bells and whistles.</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Mon, 03 Jun 2019 22:52:05 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=16338#p16338</guid>
		</item>
		<item>
			<title><![CDATA[Re: How install SVN Subversion server on DEVUAN ?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=16337#p16337</link>
			<description><![CDATA[<p>mkdir svn-repo<br />chgrp -R svn svn-repo<br />cd svn-repo<br />svnadmin create<br />chmod -R 770 .<br />chmod g+s db</p><p>it might be to setup, but to install the server (like apache)?</p>]]></description>
			<author><![CDATA[dummy@example.com (spartrekus)]]></author>
			<pubDate>Mon, 03 Jun 2019 15:30:49 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=16337#p16337</guid>
		</item>
		<item>
			<title><![CDATA[Re: How install SVN Subversion server on DEVUAN ?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=16247#p16247</link>
			<description><![CDATA[<p>Random search result: <a href="https://blog.markshead.com/79/setting-up-svn-over-ssh/" rel="nofollow">https://blog.markshead.com/79/setting-up-svn-over-ssh/</a></p><p>I don&#039;t use svn myself, but apparently it&#039;s just a case of setting up a shared directory over ssh. The client side (on linux) would refer to that using the format </p><div class="codebox"><pre><code>svn co svn+ssh://&lt;path to repo&gt;</code></pre></div><p> (Windows clients would be the same but different)</p><p>The random search result doesn&#039;t suggest the server side need additional, particular software. </p><p>Limiting the repository size may need some more;. e.g., to mount a partition as the directory. Or perhaps even bind mount a loop-back mounted file with a file system in.</p><p>hth</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Sat, 25 May 2019 23:49:25 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=16247#p16247</guid>
		</item>
		<item>
			<title><![CDATA[Re: How install SVN Subversion server on DEVUAN ?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=16245#p16245</link>
			<description><![CDATA[<div class="quotebox"><cite>ToxicExMachina wrote:</cite><blockquote><div><p>Do you want subversion VCS or general task is to make remote repo and git will be ok too?</p></div></blockquote></div><p>Just regular checkout via svn and commit over svn too. </p><p>svn checkout ip/text</p>]]></description>
			<author><![CDATA[dummy@example.com (spartrekus)]]></author>
			<pubDate>Sat, 25 May 2019 19:47:11 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=16245#p16245</guid>
		</item>
		<item>
			<title><![CDATA[Re: How install SVN Subversion server on DEVUAN ?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=16228#p16228</link>
			<description><![CDATA[<p>Do you want subversion VCS or general task is to make remote repo and git will be ok too?</p>]]></description>
			<author><![CDATA[dummy@example.com (ToxicExMachina)]]></author>
			<pubDate>Fri, 24 May 2019 09:10:35 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=16228#p16228</guid>
		</item>
		<item>
			<title><![CDATA[How install SVN Subversion server on DEVUAN ?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=16223#p16223</link>
			<description><![CDATA[<p>Hello,</p><p>What would be the easiest method to get a running SVN Subversion server ?</p><p>Major commands would be to have few users maybe 5 users, that that checkout and commit their files.<br />A quota shall be given, with about 50 Megabytes (only).</p><p>The idea is just to commit and to work on few TeX (latex) documents together, using SVN Subversion under (Unix) / Linux, and Mac.</p><p>Looking forward to hearing you.</p><p>Best regards,<br />Sp.</p>]]></description>
			<author><![CDATA[dummy@example.com (spartrekus)]]></author>
			<pubDate>Thu, 23 May 2019 16:53:28 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=16223#p16223</guid>
		</item>
	</channel>
</rss>
