<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>tony spencer &#187; Linux</title>
	<atom:link href="http://www.tonyspencer.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tonyspencer.com</link>
	<description>It&#039;s Just Links</description>
	<lastBuildDate>Thu, 09 Apr 2009 13:19:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Setup a Subversion Server in 4 Minutes</title>
		<link>http://www.tonyspencer.com/2007/03/02/setup-a-subversion-server-in-4-minutes/</link>
		<comments>http://www.tonyspencer.com/2007/03/02/setup-a-subversion-server-in-4-minutes/#comments</comments>
		<pubDate>Fri, 02 Mar 2007 17:11:18 +0000</pubDate>
		<dc:creator>tony</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.tonyspencer.com/2007/03/02/setup-a-subversion-server-in-4-minutes/</guid>
		<description><![CDATA[You are going to need to type fast but I think you can do it in 4 minutes.     These are my notes on what worked for me on my Fedora core 6 with svn lib already installed by the package manager:
1. Create a Repository
svnadmin create /svnrepos

2. Create a SVN User
vi /svnrepos/conf/svnserve.conf
In [...]]]></description>
			<content:encoded><![CDATA[<p>You are going to need to type fast but I think you can do it in 4 minutes.  <img src='http://www.tonyspencer.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   These are my notes on what worked for me on my Fedora core 6 with svn lib already installed by the package manager:</p>
<h2>1. Create a Repository</h2>
<pre><xmp>svnadmin create /svnrepos</xmp></pre>
<p><span id="more-179"></span></p>
<h2>2. Create a SVN User</h2>
<pre><xmp>vi /svnrepos/conf/svnserve.conf</xmp></pre>
<p>In that file add these three lines:</p>
<pre><xmp>anon-access = none
auth-access = write
password-db = passwd</xmp></pre>
<p>Create a password file:</p>
<pre><xmp>vi /svnrepos/conf/passwd</xmp></pre>
<p>In that file add a line for your user:</p>
<pre><xmp># add users in the format : user = password
tony = mypassword</xmp></pre>
<h2>3. Import Your Project</h2>
<p>(assuming you&#8217;ve put your project files in /projects/myrailsproject)</p>
<pre><xmp>svn import /projects/myrailsproject file:///svnrepos/myrailsproject</xmp></pre>
<h2>4. Start the SVN Server as Daemon</h2>
<pre><xmp>svnserve -d</xmp></pre>
<p>Done!  You should now have a svn server running with one project named myrailsproject.</p>
<p>Try checking it out of the repository:</p>
<pre><xmp>svn co svn://192.168.0.2/svnrepos/myyrailsproject</xmp></pre>
<p>Since we set anon-access to none you should be prompted for username and password which you created in the file /svnrepos/conf/passwd.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyspencer.com/2007/03/02/setup-a-subversion-server-in-4-minutes/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Copy an Entire Directory in Linux</title>
		<link>http://www.tonyspencer.com/2005/11/04/copy-an-entire-directory-in-linux/</link>
		<comments>http://www.tonyspencer.com/2005/11/04/copy-an-entire-directory-in-linux/#comments</comments>
		<pubDate>Fri, 04 Nov 2005 17:10:00 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.tonyspencer.com/2005/11/04/copy-an-entire-directory-in-linux/</guid>
		<description><![CDATA[Yeah, this is simple but I&#8217;m forgetful so heres how you copy an entire directory, its subdirectories, and files:
cp -R dirtocopy/ newdir/
]]></description>
			<content:encoded><![CDATA[<p>Yeah, this is simple but I&#8217;m forgetful so heres how you copy an entire directory, its subdirectories, and files:</p>
<p>cp -R dirtocopy/ newdir/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyspencer.com/2005/11/04/copy-an-entire-directory-in-linux/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>Create a tar file of an entire directory and its sub-directories</title>
		<link>http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/</link>
		<comments>http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/#comments</comments>
		<pubDate>Wed, 02 Nov 2005 16:37:40 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/</guid>
		<description><![CDATA[To create a tar archive of an entire directory including all files and sub-directories:
tar -cvf mytarfile.tar mydir/
]]></description>
			<content:encoded><![CDATA[<p>To create a tar archive of an entire directory including all files and sub-directories:</p>
<p>tar -cvf mytarfile.tar mydir/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>grep all files and sub-directories in a directory for a string</title>
		<link>http://www.tonyspencer.com/2005/10/14/grep-all-files-and-sub-directories-in-a-directory-for-a-string/</link>
		<comments>http://www.tonyspencer.com/2005/10/14/grep-all-files-and-sub-directories-in-a-directory-for-a-string/#comments</comments>
		<pubDate>Fri, 14 Oct 2005 22:34:00 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.tonyspencer.com/2005/10/14/grep-all-files-and-sub-directories-in-a-directory-for-a-string/</guid>
		<description><![CDATA[This is mostly just a post for my recollection.  To search all files and subdirectories recursively for a phrase:
grep -r -i somethingtosearchfor ./
]]></description>
			<content:encoded><![CDATA[<p>This is mostly just a post for my recollection.  To search all files and subdirectories recursively for a phrase:</p>
<p>grep -r -i somethingtosearchfor ./</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyspencer.com/2005/10/14/grep-all-files-and-sub-directories-in-a-directory-for-a-string/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

