<?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>Parallelcoding.com &#187; Ubuntu</title>
	<atom:link href="http://www.parallelcoding.com/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.parallelcoding.com</link>
	<description></description>
	<lastBuildDate>Mon, 16 Aug 2010 11:55:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Making public_html Work in Ubuntu 8.04 with Apache2</title>
		<link>http://www.parallelcoding.com/2009/01/20/making-public_html-work-in-ubuntu-804-with-apache2/</link>
		<comments>http://www.parallelcoding.com/2009/01/20/making-public_html-work-in-ubuntu-804-with-apache2/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 13:43:45 +0000</pubDate>
		<dc:creator>manatarms</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.parallelcoding.com/?p=252</guid>
		<description><![CDATA[Ever wanted each user on your server to have their own web directory? I wanted users on my server to have access to the public_html directory in their home directory so that they could display content at http://www.mydomain.com/~USERNAME. How do you do this? Edit /etc/apache2/apache2.conf Find the section that looks like this: 1 2 3 [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wanted each user on your server to have their own web directory? I wanted users on my server to have access to the public_html directory in their home directory so that they could display content at http://www.mydomain.com/~USERNAME. How do you do this?</p>
<ol>
<li>Edit /etc/apache2/apache2.conf</li>
<li>Find the section that looks like this:</li>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="ini" style="font-family:monospace;">#UserDir is now a module
#UserDir public_html
#UserDir disabled root
&nbsp;
#&lt;Directory /home/*/public_html&gt;
#	AllowOverride FileInfo AuthConfig Limit
#   Options Indexes SymLinksIfOwnerMatch IncludesNoExec
#&lt;/Directory&gt;</pre></td></tr></table></div>

<li>Make it look like this:<em><em><br />
</em></em></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="ini" style="font-family:monospace;">#UserDir is now a module
UserDir public_html
#UserDir disabled root
&nbsp;
&lt;Directory /home/*/public_html&gt;
	AllowOverride FileInfo AuthConfig Limit
	Options Indexes SymLinksIfOwnerMatch IncludesNoExec
&lt;/Directory&gt;</pre></td></tr></table></div>

<p><em><em></em></em></li>
<li>Sit back and relish in your own glory knowing that you have just accomplished something done today!</li>
</ol>
<p>How did I figure this out? Click <a title="Apache and public_html" href="http://ubuntuforums.org/showthread.php?t=17457" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parallelcoding.com/2009/01/20/making-public_html-work-in-ubuntu-804-with-apache2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby Shoes Build Error On Ubuntu</title>
		<link>http://www.parallelcoding.com/2008/03/19/ruby-shoes-build-error-on-ubuntu/</link>
		<comments>http://www.parallelcoding.com/2008/03/19/ruby-shoes-build-error-on-ubuntu/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 05:12:32 +0000</pubDate>
		<dc:creator>manatarms</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dotanything.wordpress.com/?p=16</guid>
		<description><![CDATA[When I tried to compile Ruby Shoes I got the following error: 1 2 3 4 5 6 7 8 CC shoes/app.c In file included from /usr/include/signal.h:333, from /usr/include/sys/ucontext.h:23, from /usr/include/ucontext.h:27, from /usr/lib/ruby/1.8/i486-linux/node.h:378, from shoes/app.c:11: /usr/include/bits/sigcontext.h:28:29: error: asm/sigcontext.h: No such file or directory make: *** &#91;shoes/app.o&#93; Error 1 The fix is this: 1 2 cd [...]]]></description>
			<content:encoded><![CDATA[<p>When I tried to compile Ruby Shoes I got the following error:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">CC shoes<span style="color: #000000; font-weight: bold;">/</span>app.c
In <span style="color: #c20cb9; font-weight: bold;">file</span> included from <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span>signal.h:<span style="color: #000000;">333</span>,
from <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span>sys<span style="color: #000000; font-weight: bold;">/</span>ucontext.h:<span style="color: #000000;">23</span>,
from <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span>ucontext.h:<span style="color: #000000;">27</span>,
from <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">1.8</span><span style="color: #000000; font-weight: bold;">/</span>i486-linux<span style="color: #000000; font-weight: bold;">/</span>node.h:<span style="color: #000000;">378</span>,
from shoes<span style="color: #000000; font-weight: bold;">/</span>app.c:<span style="color: #000000;">11</span>:
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span>bits<span style="color: #000000; font-weight: bold;">/</span>sigcontext.h:<span style="color: #000000;">28</span>:<span style="color: #000000;">29</span>: error: asm<span style="color: #000000; font-weight: bold;">/</span>sigcontext.h: No such <span style="color: #c20cb9; font-weight: bold;">file</span> or directory
<span style="color: #c20cb9; font-weight: bold;">make</span>: <span style="color: #000000; font-weight: bold;">***</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>shoes<span style="color: #000000; font-weight: bold;">/</span>app.o<span style="color: #7a0874; font-weight: bold;">&#93;</span> Error <span style="color: #000000;">1</span></pre></td></tr></table></div>

<p>The fix is this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span>  asm-i386<span style="color: #000000; font-weight: bold;">/</span> asm</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.parallelcoding.com/2008/03/19/ruby-shoes-build-error-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache Compiler Error</title>
		<link>http://www.parallelcoding.com/2007/09/12/apache-compiler-error/</link>
		<comments>http://www.parallelcoding.com/2007/09/12/apache-compiler-error/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 17:13:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dotanything.wordpress.com/2007/09/12/apache-compiler-error/</guid>
		<description><![CDATA[While upgrading Apache on Mac OS X 10.4 I got the following error: Cannot use an external APR-util with the bundled APR The solution &#8211; Add this to configure options: &#8211;with-included-apr]]></description>
			<content:encoded><![CDATA[<p>While upgrading Apache on Mac OS X 10.4 I got the following error:</p>
<blockquote><p>Cannot use an external APR-util with the bundled APR</p></blockquote>
<p>The solution &#8211; Add this to configure options:</p>
<blockquote><p>&#8211;with-included-apr</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.parallelcoding.com/2007/09/12/apache-compiler-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
