<?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; linux</title>
	<atom:link href="http://www.parallelcoding.com/tag/linux/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>Password Protect a Directory in Apache 2</title>
		<link>http://www.parallelcoding.com/2008/12/29/password-protect-a-directory-in-apache-2/</link>
		<comments>http://www.parallelcoding.com/2008/12/29/password-protect-a-directory-in-apache-2/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 13:39:24 +0000</pubDate>
		<dc:creator>manatarms</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.parallelcoding.com/?p=230</guid>
		<description><![CDATA[For anyone who wants to do this, the steps are as follows: Edit /etc/apach2/sites-available/default Look for the line &#8220;AllowOverride&#8221; in the section &#60;Directory /var/www&#62; Change the line from &#8220;AllowOverride None&#8221; to &#8220;AllowOverride All&#8221; Change to the directory you wish to password protect Create a .htaccess file. The contents of mine is shown below. The only [...]]]></description>
			<content:encoded><![CDATA[<p>For anyone who wants to do this, the steps are as follows:</p>
<ul>
<li>Edit /etc/apach2/sites-available/default</li>
<li>Look for the line &#8220;AllowOverride&#8221; in the section &lt;Directory /var/www&gt;</li>
<li>Change the line from &#8220;AllowOverride None&#8221; to &#8220;AllowOverride All&#8221;</li>
<li>Change to the directory you wish to password protect</li>
<li>Create a .htaccess file. The contents of mine is shown below. The only truly important line is AuthUserFile. This parameter should contain the path to the file containing your usernames/passwords. You should be able to figure out what everything else is on your own.</li>
<li>Create the .htpasswd file in the directory of your choosing with the following command:</li>
</ul>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> htpasswd <span style="color: #660033;">-c</span> <span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>.htpasswd username</pre></td></tr></table></div>

<p>My .htaccess file:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">AuthUserFile <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>site<span style="color: #000000; font-weight: bold;">/</span>.htpasswd
AuthName <span style="color: #ff0000;">&quot;Please Log In&quot;</span>
AuthGroupFile <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null
AuthType Basic
<span style="color: #000000; font-weight: bold;">&lt;</span>Limit GET POST PUT<span style="color: #000000; font-weight: bold;">&gt;</span>
    Require valid-user
<span style="color: #000000; font-weight: bold;">&lt;</span>Limit<span style="color: #000000; font-weight: bold;">&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.parallelcoding.com/2008/12/29/password-protect-a-directory-in-apache-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox</title>
		<link>http://www.parallelcoding.com/2007/01/17/virtualbox/</link>
		<comments>http://www.parallelcoding.com/2007/01/17/virtualbox/#comments</comments>
		<pubDate>Thu, 18 Jan 2007 00:51:29 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[emulation]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Virtualbox]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://relic411.wordpress.com/2007/01/17/virtualbox/</guid>
		<description><![CDATA[So, I am an avid Linux user (Ubuntu to be specific). I love the power and freedom that using Linux as an OS gives me. But one of my biggest gripes is that I still have to use some Windows stuff. For me that really means Microsoft Excel. I teach a Management Science class and [...]]]></description>
			<content:encoded><![CDATA[<p>So, I am an avid Linux user (Ubuntu to be specific). I love the power and freedom that using Linux as an OS gives me. But one of my biggest gripes is that I still have to use some Windows stuff. For me that really means Microsoft Excel. I teach a Management Science class and am required to use Excel for modeling and solving optimization, simulation, and decision theory type problems. So for the longest time I&#8217;ve been dual booting Windows and Ubuntu. But I don&#8217;t think that I&#8217;ll have to anymore thanks to VirtualBox!</p>
<p><a href="http://www.virtualbox.org" title="VirtualBox" target="_blank"> VirtualBox</a>, from their website, &#8220;<em>is a family of powerful x86 <a href="http://www.virtualbox.org/wiki/Virtualization" class="wiki">virtualization</a> products for enterprise as well as home use. Not only is <span class="searchword0">VirtualBox</span> an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU Public License (GPL). See &#8220;<a href="http://www.virtualbox.org/wiki/VirtualBox" class="wiki">About <span class="searchword0">VirtualBox</span></a>&#8221; for an introduction; see &#8220;<a href="http://www.virtualbox.org/wiki/InnoTek" class="wiki">InnoTek</a>&#8221; for more about our company.&#8221;</em></p>
<p>I am currently running VirtualBox on my Ubuntu Edgy system using Windows as a guest system. This allows me to use Ubuntu, use Excel/Word, and to go back and forth whenever I must. So what&#8217;s the big deal? Why is this different from VMWare or QEMU? I&#8217;ll tell you why &#8211; it&#8217;s way faster! I don&#8217;t know why, but it is! Solver runs faster! MS Visual Studio runs more quickly! And, while running the VM Ubuntu seems to run more quickly that it has with VMWare or QEMU.</p>
<p>I do have just a few suggestions though:</p>
<ol>
<li>Dynamic VDIs (Virtual Disk Images) are a bust. If you run out of space they barely expand at all (and I mean barely). I know this because I ran out of space while installing MS Visual Studio 2005. The disk didn&#8217;t expand well or quickly enough. And to top that there is no way to simply expand a VDI or to copy and existing VDI to a new and larger VDI (at least now way that I was able to find. If there is a way someone please tell me!)</li>
<li>Getting USB support to work is a pain. The mouse works fine, but I still can&#8217;t access my flash drive. Hopefully this is my own fault and something silly like permissions or some such thing. But after following the manuals instructions for group ownership and permissions I have still not been able to get VirtualBox to access my flash drive.</li>
<li>All of the features should eventually be accessible from the GUI. As of now there are quite a few features available only from the command line. I don&#8217;t mind this, but it will save a lot of people headaches in the future.</li>
</ol>
<p>So, overall VirtualBox is awesome! A few bugs to fix, a few features to add, but that&#8217;s about all!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parallelcoding.com/2007/01/17/virtualbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
