<?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>Matt Shelton &#187; ubuntu</title>
	<atom:link href="http://www.mattshelton.net/tags/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mattshelton.net</link>
	<description>scribbling geekery, things and stuff</description>
	<lastBuildDate>Fri, 03 Sep 2010 17:48:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Set Up WebDAV for iCal Sharing on ubuntu 8.04</title>
		<link>http://www.mattshelton.net/2008/05/31/set-up-webdav-for-ical-sharing-on-ubuntu-804/</link>
		<comments>http://www.mattshelton.net/2008/05/31/set-up-webdav-for-ical-sharing-on-ubuntu-804/#comments</comments>
		<pubDate>Sat, 31 May 2008 21:14:20 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[geek life]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[ical]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.mattshelton.net/?p=116</guid>
		<description><![CDATA[Enabling WebDAV for iCal publishing/sharing is fairly straightforward: 0. Install apache2 (if it&#8217;s not already installed): sudo apt-get install apache2 1. Create a WebDAV directory in your DocumentRoot with the proper permissions: mkdir -p /var/www/webdav chmod -R 777 /var/www/webdav 2. Edit Apache2&#8242;s dav_fs.conf file: cd /etc/apache2/mods-available sudo vi dav_fs.conf DAVLockDB /var/lock/apache2/DAVLock DAV On DAVMinTimeout 600 [...]]]></description>
			<content:encoded><![CDATA[<p>Enabling WebDAV for iCal publishing/sharing is fairly straightforward:</p>
<p><strong>0. Install apache2 (if it&#8217;s not already installed):</strong></p>
<p><code>sudo apt-get install apache2</code></p>
<p><strong>1. Create a WebDAV directory in your DocumentRoot with the proper permissions:</strong></p>
<p><code>mkdir -p /var/www/webdav</code><br />
<code>chmod -R 777 /var/www/webdav</code></p>
<p><strong>2. Edit Apache2&#8242;s dav_fs.conf file:</strong></p>
<p><code>cd /etc/apache2/mods-available</code><br />
<code>sudo vi dav_fs.conf</code></p>
<p>DAVLockDB /var/lock/apache2/DAVLock</p>
<p><Directory "/var/www/webdav"><br />
DAV On<br />
DAVMinTimeout 600<br />
DAVDepthInfinity On</p>
<p>AllowOverride AuthConfig<br />
AuthName &#8220;DAV Restricted&#8221;<br />
AuthType Basic<br />
AuthUserFile /etc/apache2/.htaccess</p>
<p>Require valid-user<br />
</Directory></p>
<p><strong>3. Create symlinks to the proper DAV module files:</strong><br />
<em>(Some of these will already exist. Leave them alone.)</em></p>
<p><code>cd ../mods-enabled</code><br />
<code>sudo ln -s ../mods-available/dav.load</code><br />
<code>sudo ln -s ../mods-available/dav_fs.conf</code><br />
<code>sudo ln -s ../mods-available/dav_fs.load</code></p>
<p><strong>4. Create the &#8216;AuthUserFile&#8217; indicated in step 2:</strong></p>
<p><code>sudo htpasswd -m -c /etc/httpd/.htaccess webcal</code></p>
<p><strong>5. Restart apache:</strong></p>
<p><code>sudo /etc/init.d/apache2 restart</code></p>
<p><strong>6. Publish your iCal!</strong></p>
<p>Your url for publishing should now look like <em>http://mywebhost/webdav/iCal/</em>. Enjoy!</p>
<p><small>Based on a <a href="http://www.millan.info/blog/2005/02/setup-fedora-linux-webdav-server-for.php">guide for Fedora at millan.info</a>.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattshelton.net/2008/05/31/set-up-webdav-for-ical-sharing-on-ubuntu-804/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command Line Upgrade to 8.04 Hardy Heron</title>
		<link>http://www.mattshelton.net/2008/04/25/command-line-upgrade-to-804-hardy-heron/</link>
		<comments>http://www.mattshelton.net/2008/04/25/command-line-upgrade-to-804-hardy-heron/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 00:58:52 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.mattshelton.net/?p=101</guid>
		<description><![CDATA[Ubuntu 8.04 is the second LTS release of the incredibly popular Linux distro. Inspired, I did a fresh install of my desktop at work and found the process smooth and about as simple as an XP install, (though admittedly about 10 minutes faster!), and am quite happy with the results. Then, I thought it might [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ubuntu.com/news/ubuntu-8.04-lts-desktop">Ubuntu 8.04</a> is the second <abbr title="Long Term Support">LTS</abbr> release of the incredibly popular Linux distro. Inspired, I did a fresh install of my desktop at work and found the process smooth and about as simple as an XP install, (though admittedly about 10 minutes faster!), and am quite happy with the results.</p>
<p>Then, I thought it might be fun to see if my svn box in the basement would survive a command-line upgrade again (it worked for 7.04 to 7.10), so why not?</p>
<p>The process is fairly straightforward. As root (or via sudo):
<ol>
<li><code>sed -e 's/gutsy/hardy/g' -i /etc/apt/sources.list</code></li>
<li><code>apt-get update</code></code></li>
<li><code>apt-get dist-upgrade</code></li>
<li>... wait ...</li>
<li><code>shutdown -r now</code></li>
</ol>
<p>During my install this morning, and the corresponding install of several packages not included by default, I found that the default repository [us.archive.ubuntu.com] is <em>really</em> slow right now. Synaptic Package Manager has this nifty "find the best mirror" tool, and lo and behold, the best option for me is in Switzerland [<a href="http://mirror.switch.ch/ftp/ubuntu/">mirror.switch.ch</a>], so rather than just replace 'gutsy' with 'hardy', I updated my sources.list to match the fresh one at work.</p>
<p>Then I saw this:</p>
<blockquote><p>947 upgraded, 194 newly installed, 67 to remove and 0 not upgraded.<br />
Need to get 763MB of archives.<br />
After unpacking 473MB of additional disk space will be used.<br />
Do you want to continue [Y/n]?</p></blockquote>
<p>Well, yeah, of course... but wow, that's some update! Undaunted, I pressed on. Sure enough, it really was that simple. The upgrade on my Dual-PIII 667 (yeah, that's right, PIII baby!) workstation took just over 4 hours to complete, according to my history, so not too shabby.</p>
<p><a href="http://www.ubuntu.com/getubuntu/download">Grab ubuntu 8.04</a> directly from the ubuntu.com web site, or from one of many mirrors.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattshelton.net/2008/04/25/command-line-upgrade-to-804-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
