<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Joey's Linux Scams</title>
	<atom:link href="http://sartorius.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sartorius.wordpress.com</link>
	<description>Just another WordPress.com weblog about Linux</description>
	<lastBuildDate>Mon, 17 Mar 2008 22:50:12 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='sartorius.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/0125690821159d094b92ddaba0e99e3e?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Joey's Linux Scams</title>
		<link>http://sartorius.wordpress.com</link>
	</image>
			<item>
		<title>Unzipping a directory of zip files</title>
		<link>http://sartorius.wordpress.com/2007/04/12/unzipping-a-directory-of-zip-files/</link>
		<comments>http://sartorius.wordpress.com/2007/04/12/unzipping-a-directory-of-zip-files/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 14:43:32 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Using Linux]]></category>

		<guid isPermaLink="false">http://sartorius.wordpress.com/2007/04/12/unzipping-a-directory-of-zip-files/</guid>
		<description><![CDATA[Here&#8217;s a small bash script that will allow you to unzip a directory full of zip files.  Each file will be unzipped into a directory named for itself (e.g. the contents of foo.zip will be extracted to a directory called foo).   To run the script, enter the directory where the zip files [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=14&subd=sartorius&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here&#8217;s a small bash script that will allow you to unzip a directory full of zip files.  Each file will be unzipped into a directory named for itself (e.g. the contents of foo.zip will be extracted to a directory called foo).   To run the script, enter the directory where the zip files are stored and create a file with the following contents:</p>
<pre>
#!/bin/sh
for i in *.zip
do
  mkdir `basename $i .zip`
  unzip $i -d `basename $i .zip`
done
</pre>
<p>You can name the file whatever you wish.  I&#8217;ll use unzip_script as an example.  We then need to make the file executable.  You can do this with the following command:</p>
<pre>
chmod 755 unzip_script
</pre>
<p>
And now we can run the file with the following command:
</p>
<pre>
./unzip_script
</pre>
<p>You should now have a directory for each zip file full of it&#8217;s contents.  You can also modify the script to suit your needs.  The following script will delete the zip files once they are extracted:</p>
<pre>
#!/bin/sh
for i in *.zip
do
  mkdir `basename $i .zip`
  unzip $i -d `basename $i .zip`
  rm $i
done
</pre>
<p>And here&#8217;s another version that moves the zip files to another directory once they are extracted:</p>
<pre>
#!/bin/sh
mkdir zip_files
for i in *.zip
do
  mkdir `basename $i .zip`
  unzip $i -d `basename $i .zip`
  mv $i zip_files
done
</pre>
<p>Be sure to make a backup copy of the data to be extracted.  These scripts were tested, but I can&#8217;t anticipate every possibility.  Always take precautions to preserve your data.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sartorius.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sartorius.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sartorius.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sartorius.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sartorius.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sartorius.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sartorius.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sartorius.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sartorius.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sartorius.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sartorius.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sartorius.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=14&subd=sartorius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sartorius.wordpress.com/2007/04/12/unzipping-a-directory-of-zip-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7c56947cab257a5d96fae0787331905?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Joey</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing, setting up, and using Greasemonkey</title>
		<link>http://sartorius.wordpress.com/2006/12/19/installing-setting-up-and-using-greasemonkey/</link>
		<comments>http://sartorius.wordpress.com/2006/12/19/installing-setting-up-and-using-greasemonkey/#comments</comments>
		<pubDate>Tue, 19 Dec 2006 13:32:46 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Howto]]></category>

		<guid isPermaLink="false">http://sartorius.wordpress.com/2006/12/19/installing-setting-up-and-using-greasemonkey/</guid>
		<description><![CDATA[I&#8217;m sure by now all you Firefox aficionados have heard of a little addon extension called Greasemonkey.  I&#8217;ve also seen some frustration associated with the installation and use of Greasemonkey.  Since I also shared this frustration, I decided to put together this little tutorial.  Leave feedback in the comments section.
Installation
We&#8217;re assuming you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=13&subd=sartorius&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m sure by now all you Firefox aficionados have heard of a little addon extension called Greasemonkey.  I&#8217;ve also seen some frustration associated with the installation and use of Greasemonkey.  Since I also shared this frustration, I decided to put together this little tutorial.  Leave feedback in the comments section.</p>
<h3>Installation</h3>
<p>We&#8217;re assuming you have a functioning copy of Firefox 1.5 or better.  If not go download it <a href="http://www.mozilla.com/firefox/" title="Firefox is cool!" target="_blank">here</a>.   Next you will need to install the <a href="https://addons.mozilla.org/firefox/748/" title="Greasemonkey is cool too!" target="_blank">Greasemonkey extension</a>.  Restart Firefox to complete the installation.  In Firefox 2.0 there should be a button in the installation dialog box that will automagically restart Firefox and restore your session as if Firefox had never been closed. Once installed properly there will be a small Greasemonkey icon in your status bar and there will also be a menu option under the Tools menu.</p>
<p>Pretty neat and simple so far!  However, I have a sneaking suspicion most of you have made it this far already.</p>
<h3>Configuration</h3>
<p>Once installed properly there is still one more important piece of setup to do.  You have to set the text editor.  There are a couple of ways to do this.</p>
<p>The nerdy way to set the text editor is to open a new tab and navigate to your about:config page.  In the about:config page there will be an entry called greasemonkey.editor.  Right click on this entry and select Modify.  Enter the path to your favorite text editor here.  In Ubuntu Linux this path is /usr/bin/gedit and for Windows losers&#8230; I mean users, the path is c:\windows\notepad.exe or whatever the path is to your favorite text editor.</p>
<p>The mouse clicky way to do this only works if you&#8217;ve never set the text editor before (either intentionally or unintentionally). On your freshly installed Greasemonkey, right click on the status bar icon or click on Tools &gt; Greasemonkey &gt; New User Script.  This will open a dialog box that will allow you to select your text editor.</p>
<p>Note: New User Script is for WRITING scripts, NOT installing them.  Unless you write your own Greasemonkey scripts, you&#8217;ll probably never click on New User Script again.  If you&#8217;ve previously tried to install a .js file using New User Script, it has set that .js file as your default editor.  You&#8217;ll have to use the nerdy text editor setting method mentioned above to correct this.  Once you have a properly configured text editor option, clicking on New User Script will simply open the text editor.  Personally I think they should rename that option Script Editor or Text Editor to avoid a lot of confusion.</p>
<h3>Installing scripts</h3>
<p>Installing of scripts in Greasemonkey is easy, but non-intuitive. First, remember that all Greasemonkey script filenames must end in user.js and typically they are named &lt;script-function&gt;.user.js. You have to surf to the script to install it.  Once you do that, Greasemonkey will go ahead and install it automatically. If a file is stored on your local computer, go to File &gt; Open File&#8230; to select and open the file.  Again, Greasemonkey will automatically install the script once you&#8217;ve done this.  Surf to <a href="http://userscripts.org/" title="Millions of scripts!" target="_blank">http://userscripts.org/</a> to find a comprehensive and searchable list of millions of scripts.</p>
<h3>Managing scripts</h3>
<p>Once you have scripts installed, you be able to enable, disable, uninstall, and edit them from the Manage User Scripts dialog. To get to the Manage User Scripts dialog, right click on the Greasemonkey icon in the status bar and select Manage User Scripts&#8230;, or go to Tools &gt; Greasemonkey &gt; Manage User Scripts&#8230;.  Once inside you can turn the scripts on and off and uninstall or edit them.  You can also select an include or exlcude list for each script.  To make the script apply to all websites, click on the script in the left hand column and put a * in the includes list.  To make a script only work for one website, for example Google, select the script in the left hand column and put http://google.com/* in the includes list.  Use the same method for the excludes list if you don&#8217;t want the script to run on certain web pages.</p>
<h3>Conclusion</h3>
<p>I hope that this little tutorial helps some of you out.  Greasemonkey is a neat feature and sometimes and invaluable tool.  Let me know if you have any suggestions for this tutorial.  Have a lot of fun!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sartorius.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sartorius.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sartorius.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sartorius.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sartorius.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sartorius.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sartorius.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sartorius.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sartorius.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sartorius.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sartorius.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sartorius.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=13&subd=sartorius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sartorius.wordpress.com/2006/12/19/installing-setting-up-and-using-greasemonkey/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7c56947cab257a5d96fae0787331905?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Joey</media:title>
		</media:content>
	</item>
		<item>
		<title>Samba setup</title>
		<link>http://sartorius.wordpress.com/2006/12/13/samba-setup/</link>
		<comments>http://sartorius.wordpress.com/2006/12/13/samba-setup/#comments</comments>
		<pubDate>Wed, 13 Dec 2006 04:09:59 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Using Linux]]></category>

		<guid isPermaLink="false">http://sartorius.wordpress.com/2006/12/13/samba-setup/</guid>
		<description><![CDATA[Here is an Ubuntu 6.10 Samba setup guide blatantly ripped from this blog. If you have more than one computer and a mixture of Linux and Windows, Samba is essential for sharing files and printers. Enjoy!

Install samba

sudo apt-get install samba smbfs

Add a system user for samba

System &#62; Administration &#62; Users and Groups &#62; Add User

Enter [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=12&subd=sartorius&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here is an Ubuntu 6.10 Samba setup guide blatantly ripped from <a href="http://www.amyon.net/v3/articles/operating-system/simple-samba-setup-on-ubuntu-6.10-edgy-eft-3.html" title="A better blog than mine" target="_blank">this blog</a>. If you have more than one computer and a mixture of Linux and Windows, Samba is essential for sharing files and printers. Enjoy!</p>
<ol>
<li>Install samba<br />
<code><br />
sudo apt-get install samba smbfs</code><br />
<hr /></li>
<li>Add a system user for samba<br />
<code><br />
System &gt; Administration &gt; Users and Groups &gt; Add User<br />
<strong><br />
Enter the username as samba<br />
Enter the password</strong><br />
<strong><br />
In the "User Priviliges" tab, deselect all.<br />
In the "Advanced" tab, choose "/bin/false" as shell, and "users" as the Main Group.</strong></code><br />
<hr /></li>
<li>Add samba user<br />
<code><br />
sudo smbpasswd -a samba<br />
<strong><br />
Enter the password desire</strong><br />
*<em>This is the username and password that will be require when you are connecting to your ubuntu guest through windows box</em>.</code><br />
<hr /></li>
<li>Edit smbusers file<br />
<code><br />
gksudo gedit /etc/samba/smbusers<br />
<strong><br />
Enter this in the file</strong><br />
samba = "network username"<br />
<strong><br />
Save the file and exit gedit<br />
</strong></code><br />
<hr /></li>
<li>Edit smb.conf configuration file<br />
<code><br />
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.default<br />
gksudo gedit /etc/samba/smb.conf</code><br />
<hr /></li>
<li>Change your workgroup name in smb.conf<br />
<code><br />
<strong># Change this to the workgroup/NT-domain name your Samba server will part of</strong><br />
workgroup = YOUR_WORKGROUP_NAME</code><br />
<hr /></li>
<li>Uncomment security section<br />
<code><br />
;  security = user<br />
<strong><br />
Change into<br />
</strong><br />
security = user<br />
username map = /etc/samba/smbusers</code><br />
<hr /></li>
<li>Add samba share<br />
<code><br />
System &gt; Administration &gt; Shared Folders<br />
Enter information for your desired shared</code><br />
<hr /></li>
<li>Test configuration and restart samba<br />
<code><br />
sudo testparm<br />
sudo /etc/init.d/samba restart</code></li>
</ol>
<p>That&#8217;s it!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sartorius.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sartorius.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sartorius.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sartorius.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sartorius.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sartorius.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sartorius.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sartorius.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sartorius.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sartorius.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sartorius.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sartorius.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=12&subd=sartorius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sartorius.wordpress.com/2006/12/13/samba-setup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7c56947cab257a5d96fae0787331905?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Joey</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 6.10 Edgy Eft report</title>
		<link>http://sartorius.wordpress.com/2006/11/20/ubuntu-610-edgy-eft-report/</link>
		<comments>http://sartorius.wordpress.com/2006/11/20/ubuntu-610-edgy-eft-report/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 03:28:45 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://sartorius.wordpress.com/2006/11/20/ubuntu-610-edgy-eft-report/</guid>
		<description><![CDATA[I recently upgraded to Ubuntu 6.10, Edgy Eft.  Overall, the differences were minor, but there were a few things that have caused me some major grief.  There were also a couple of nice additions. Here&#8217;s my view.
Things that were broke

Splash screens &#8211; The splash screens at boot and shutdown have disappeared.  Now [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=10&subd=sartorius&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I recently upgraded to Ubuntu 6.10, Edgy Eft.  Overall, the differences were minor, but there were a few things that have caused me some major grief.  There were also a couple of nice additions. Here&#8217;s my view.</p>
<h3>Things that were broke</h3>
<ol>
<li>Splash screens &#8211; The splash screens at boot and shutdown have disappeared.  Now there is just a blank screen.  This hasn&#8217;t effected usability, but it is a minor annoyance.  On the upside, boot and shutdown seem to take less time.</li>
<li>Songbird &#8211; My Songbird install was broken.  The app would open, but it wouldn&#8217;t play any songs.  I just got an error message.  I tried uninstalling and reinstalling several times, but it was no use.  I&#8217;m was unable to diagnose the problem.</li>
<li>X &#8211; My x.org install was corrupted.  I suppose this is because I had the nVidia binary drivers installed.  It was simple to go back into my config file and correct the issue, but this would be a non-trivial fix for a novice.  This one smacked of &#8220;not ready for primetime.&#8221;</li>
<li>Flash &#8211; The upgrade removed my install of the Beta 9.0 Flash player and replaced it with the old version 7.  Of course everyone knows that the Linux version 7 Flash player doesn&#8217;t work, so that was a no go.  Also in the upgrade Firefox was upped to 2.0 and it appears that the Beta 9.0 Flash player doesn&#8217;t play well with it at all (pun intended).  It caused a lot of random slowness and crashes.  Boooo!!!</li>
<li>Plugins &#8211; Most of my plugins for Firefox didn&#8217;t work for some reason.  I downloaded Automatix and installed most of them.  This seemed to help some, but some things are still broke.</li>
<li>ET &#8211; Enemy Territory no longer works.  I&#8217;m sure it has something to do with my video settings or drivers, but I have been unable to diagnose the problem so far.</li>
</ol>
<h3>Things I liked</h3>
<ol>
<li> Fonts &#8211; There were some new fonts in Firefox.  They are much better than the old fonts and much easier to read.</li>
<li>Firefox &#8211; They included the 2.0 version of Firefox.  I was impressed considering how close the Edgy release was to the Firefox 2.0 release.</li>
<li>Mail Notification &#8211; Somehow the Mail Notification app got installed and works on my computer.  Previously I had set it up, but never ran it since it didn&#8217;t seem to work.</li>
</ol>
<h3>Conclusion</h3>
<p>Overall, I could probably have done without this upgrade.  The issues with Flash have really hurt usability since so many sites these days rely on it.  As you can see from this list, my cons outweigh the pros 2 to 1.  I find myself needing to use my Windows laptop more often than I did before the upgrade and I don&#8217;t care for that.  If you have some insights on the problems I listed or want to share your opinion, leave a comment.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sartorius.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sartorius.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sartorius.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sartorius.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sartorius.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sartorius.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sartorius.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sartorius.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sartorius.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sartorius.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sartorius.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sartorius.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=10&subd=sartorius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sartorius.wordpress.com/2006/11/20/ubuntu-610-edgy-eft-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7c56947cab257a5d96fae0787331905?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Joey</media:title>
		</media:content>
	</item>
		<item>
		<title>Publishing Firefox bookmarks to the web in Linux</title>
		<link>http://sartorius.wordpress.com/2006/08/30/publishing-firefox-bookmarks-to-the-web-in-linux/</link>
		<comments>http://sartorius.wordpress.com/2006/08/30/publishing-firefox-bookmarks-to-the-web-in-linux/#comments</comments>
		<pubDate>Wed, 30 Aug 2006 03:52:39 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Howto]]></category>

		<guid isPermaLink="false">https://sartorius.wordpress.com/2006/08/30/publishing-firefox-bookmarks-to-the-web-in-linux/</guid>
		<description><![CDATA[Here is a little bash script I wrote that takes your Firefox bookmarks and uploads them to your web space.
Tools
For this project you will be using the bash shell and various command line operations. And of course you will need Firefox! Bash is usually the default Linux shell. This will probably work with other shells [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=7&subd=sartorius&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here is a little bash script I wrote that takes your Firefox bookmarks and uploads them to your web space.</p>
<h3>Tools</h3>
<p>For this project you will be using the bash shell and various command line operations. And of course you will need Firefox! Bash is usually the default Linux shell. This will probably work with other shells besides bash with little or no modification.</p>
<h3>Caveats</h3>
<p>Buyer beware!  Whenever you create a script or use one from another source, <strong>always</strong> test it in a non-production environment to insure it will do no harm.  Create some test files on which to run the script and break up complex commands so that you can test each part individually. When you feel confident that you are ready to implement the script, backup all data beforehand.  And if you insist on running things as root or sudo, check out this <a href="http://www.justpasha.org/folk/rm.html" title="evils of rm under root">horrid tale</a>.</p>
<h3>Method</h3>
<p>The first thing to do is to find your bookmarks.html file. This is usually stored in your home directory structure. On my Ubuntu system it is stored at</p>
<pre>/home/username/.mozilla/firefox/xxxxxxxx.default/bookmarks.html</pre>
<p>where xxxxxxxx is a random set of letters and numbers that is different for each user.</p>
<p>Our next task is to create some directories. I like to store my scripts in /home/username/scripts, but you can store them where ever you wish. For this script we need to create two directories, backups and logs. You can create these directories anywhere you wish, but I created mine like so.</p>
<pre>mkdir /home/username/logs
mkdir /home/username/.mozilla/firefox/xxxxxxxx.default/backups</pre>
<p>Now we are ready to create the script.</p>
<pre>1  #!/bin/sh
2  #move to bookmark directory
3  cd /home/username/.mozilla/firefox/xxxxxxxx.default/
4  #create backup file just in case, backups directory must already exist
5  cp bookmarks.html backups/bookmarks.`date +%m-%d-%y_%H%M`.html
6  #append date to bottom of file
7  echo "`date`" &gt;&gt; bookmarks.html
8  #up the results
9  ftp -in &lt;&lt;EOF
10 open yoursite.com
11 user username password
12 bin
13 cd public_html
14 cd files
15 put bookmarks.html
16 bye
17 EOF
18 #remove date line from end of file
19 echo "`sed '$d' bookmarks.html`" &gt; bookmarks.html
20 #remove old backup files
21 find backups -type f -mtime +8 -exec rm {} ;
22 #move to log file directory
23 cd /home/username/logs/
24 #create log file
25 echo "Your bookmarks were last updated on `date`" &gt; bookmark_backup.log</pre>
<p>I&#8217;ve commented the file, but I&#8217;ll go through the script line by line and talk about what is going on. Bash comments start with the # symbol. I recommend that you comment every script or document you write. Comments not only help other people who are looking at your work, they also help <em>you</em>.  Sometimes what seems so clear now, may not seem clear three years down the road. I have also added line numbers for clarity of discussion and will include a non-numbered copy at the bottom of this post.</p>
<ul>
<li>Line 1: Every bash script starts with this line or something similar like #!/bin/bash.</li>
<li>Line 3: Move to the directory where bookmarks.html is stored using the cd command. It makes things easier because I can use relative paths.</li>
<li>Line 5: Make a backup copy of the bookmarks.html file in the backups directory using the cp command. I name the backup file with the current date using backticks around the date command.  The backtick is usually on the key with the tilda (~). Check the date man page for more info on formating a date string.</li>
<li>Line 7: Append (&gt;&gt;) the default date string to the end of the bookmarks.html file.</li>
<li>Line 9: This line tells bash to start an ftp sesson with no interactive prompting and no auto-login. &lt;&lt;EOF tells bash to hang on a second while we enter more ftp commands. Bash will start executing the commands entered once it sees EOF again on a line by itself.</li>
<li>Line 10: Open an FTP session on yoursite.com.</li>
<li>Line 11: Log in as username with password. Note here that your password will be stored in plain text, this is not very secure so be careful.</li>
<li>Line 12: Put ftp in binary file transfer mode. This helps insure the file gets uploaded correctly.</li>
<li>Lines 13 and 14: Change to the directory where you want to put the file. You&#8217;ll need to create these directories ahead of time. I find this works best if you only do one directory at a time. If you don&#8217;t want your document publicly displayed, store it outside the public_html directory.</li>
<li>Line 15: Upload the bookmarks.html file to the server with the put command.</li>
<li>Line 16: Close the ftp session with the bye command.</li>
<li>Line 17: This is the end of the EOF statement I was mentioning earlier. Bash will now execute all the commands between the two EOFs.</li>
<li>Line 19: On line 7 we added a date line to the bottom of the file, now we remove it to put it back like it was. We use sed for this. See the sed man page for more information on its usage.</li>
<li>Line 21: Using the find command we find all backups from line 5 that are older than 8 days and remove them. Don&#8217;t forget to do this or you&#8217;ll end up with hundreds of backup files taking up space.</li>
<li>Line 23: Change to the logs directory.</li>
<li>Line 25: Update the log file for this script to let us know the script completed successfully.</li>
</ul>
<h3>Conclusion</h3>
<p>You should now be able to access the results by going to http://yoursite.com/files/bookmarks.html (or where ever you put it).</p>
<p>For true scripty goodness, create a cron job that automagically runs this script.  I run mine twice a day at 9:53 and 21:53.  Here is my crontab -l for your reference.</p>
<pre>53 9,21 * * * sh /home/username/scripts/bookmark_backup.script</pre>
<p>Now as promised, the script with no numbers.</p>
<pre>#!/bin/sh
#move to bookmark directory
cd /home/username/.mozilla/firefox/xxxxxxxx.default/
#create backup file just in case, backups directory must already exist
cp bookmarks.html backups/bookmarks.`date +%m-%d-%y_%H%M`.html
#append date to bottom of file
echo "`date`" &gt;&gt; bookmarks.html
#up the results
ftp -in &lt;&lt;EOF
open yoursite.com
user username password
bin
cd public_html
cd files
put bookmarks.html
bye
EOF
#remove date line from end of file
echo "`sed '$d' bookmarks.html`" &gt; bookmarks.html
#remove old backup files
find backups -type f -mtime +8 -exec rm {} ;
#move to log file directory
cd /home/username/logs/
#create log file
echo "Your bookmarks were last updated on `date`" &gt; bookmark_backup.log</pre>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sartorius.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sartorius.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sartorius.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sartorius.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sartorius.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sartorius.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sartorius.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sartorius.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sartorius.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sartorius.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sartorius.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sartorius.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=7&subd=sartorius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sartorius.wordpress.com/2006/08/30/publishing-firefox-bookmarks-to-the-web-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7c56947cab257a5d96fae0787331905?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Joey</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating cron jobs in Ubuntu</title>
		<link>http://sartorius.wordpress.com/2006/08/30/creating-cron-jobs-in-ubuntu/</link>
		<comments>http://sartorius.wordpress.com/2006/08/30/creating-cron-jobs-in-ubuntu/#comments</comments>
		<pubDate>Wed, 30 Aug 2006 01:08:04 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Howto]]></category>

		<guid isPermaLink="false">https://sartorius.wordpress.com/2006/08/30/creating-cron-jobs-in-ubuntu/</guid>
		<description><![CDATA[It seems that several people have had trouble creating cron jobs in Ubuntu.  Here is a method I found that works for me.  It requires sudo access.
Tools:
The only thing you&#8217;ll need is cron and a good text editor (like nano), both of which are in the default Ubuntu install.
Method:
Create a file with your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=6&subd=sartorius&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It seems that several people have had trouble creating cron jobs in Ubuntu.  Here is a method I found that works for me.  It requires sudo access.</p>
<h3>Tools:</h3>
<p>The only thing you&#8217;ll need is cron and a good text editor (like <a href="http://www.nano-editor.org/" title="text editor">nano</a>), both of which are in the default Ubuntu install.</p>
<h3>Method:</h3>
<p>Create a file with your job(s) in it and save it with any filename (e.g. crontab_file). Put each job on it&#8217;s own line like so:</p>
<pre>* * * * * sh /home/userbob/script1
* * * * * sh /home/userbob/script2</pre>
<p>Next run crontab with sudo on the file you just created.  Be sure to select your username with the -u option:</p>
<pre>sudo crontab -u userbob crontab_file</pre>
<h3>Conclusion</h3>
<p>And that&#8217;s it.  Pretty simple, huh?  I hope this helps you out.  Check out the <a href="http://en.wikipedia.org/wiki/Crontab" title="crontab page" target="_blank">crontab page</a> at Wikipedia for help with formatting your own cron jobs.</p>
<h3>UPDATE:</h3>
<p>Just to clarify, you need to check out the proper notation for <a href="http://en.wikipedia.org/wiki/Crontab" title="crontab page" target="_blank">crontab</a> to determine how to write your own cron jobs and make them run when you want them to.</p>
<p>Another clarification.  You must create a file with each cron job on a separate line and then run crontab on it to make it work.  You should do this as a user using the sudo command.  Don&#8217;t be running scripts as root.  Don&#8217;t be doing work as root.  Don&#8217;t do anything as root unless you have no other choice.  Just forget that root even exists.  Your life will be better.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sartorius.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sartorius.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sartorius.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sartorius.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sartorius.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sartorius.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sartorius.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sartorius.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sartorius.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sartorius.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sartorius.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sartorius.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=6&subd=sartorius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sartorius.wordpress.com/2006/08/30/creating-cron-jobs-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7c56947cab257a5d96fae0787331905?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Joey</media:title>
		</media:content>
	</item>
		<item>
		<title>Ripping DVD audio to ogg in Ubuntu</title>
		<link>http://sartorius.wordpress.com/2006/08/30/ripping-dvd-audio-to-ogg-in-ubuntu/</link>
		<comments>http://sartorius.wordpress.com/2006/08/30/ripping-dvd-audio-to-ogg-in-ubuntu/#comments</comments>
		<pubDate>Wed, 30 Aug 2006 00:35:48 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Howto]]></category>

		<guid isPermaLink="false">https://sartorius.wordpress.com/2006/08/30/ripping-dvd-audio-to-ogg-in-ubuntu/</guid>
		<description><![CDATA[Hello truth seekers!  Here is my definitive guide to converting DVD audio to ogg encoded audio files in Ubuntu Linux.  This method was used in Dapper and Breezy.
Tools
I used a combination of acidrip, ffmpeg, and oggenc to do the ripping.   All are available through apt.
sudo aptitude install acidrip
sudo aptitude install ffmpeg
sudo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=5&subd=sartorius&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hello truth seekers!  Here is my definitive guide to converting DVD audio to ogg encoded audio files in Ubuntu Linux.  This method was used in Dapper and Breezy.</p>
<h3>Tools</h3>
<p>I used a combination of acidrip, ffmpeg, and oggenc to do the ripping.   All are available through apt.</p>
<pre>sudo aptitude install acidrip
sudo aptitude install ffmpeg
sudo aptitude install vorbis-tools</pre>
<h3>Method</h3>
<p>First I extracted each chapter to an avi file using Acidrip. On the Video tab I set the Codec to &#8220;copy&#8221;. On the General tab I set the audio codec to &#8220;pcm&#8221; and the gain to 18 (this can be any number, experiment to see what works for you). Then I used the preview tab to check the audio levels. Then I queued up all the chapters and started ripping.</p>
<p>Once the avi files were made I used the following ffmpeg command to extract the audio to a wav file.</p>
<pre>ffmpeg -i filename.avi filename.wav</pre>
<p>You can create a bash script to do this for you, but don&#8217;t bother because I&#8217;ve already done it.</p>
<pre>#!/bin/sh
for i in *.avi
do
  ffmpeg -i $i `basename $i .avi`.wav
done</pre>
<p>Once I had done this, I used oggenc to make ogg files.</p>
<pre>oggenc -q6 filename.wav -o filename.ogg</pre>
<p>The -q6 option sets the ogg quality to 6. Most people use 4 or 5 which are a little more lossy. I prefer a setting of 6 to give me a higher quality with a file size that is still reasonable.  Here is another bash script that takes care of this step for you.</p>
<pre>#!/bin/sh
for i in *.wav
do
  oggenc -q6 $i -o `basename $i .wav`.ogg
done</pre>
<h3>Conclusion</h3>
<p>Now you have ogg files created from you DVD that you can edit or listen to on your ogg player. This method can also be used to create mp3 files using lame.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sartorius.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sartorius.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sartorius.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sartorius.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sartorius.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sartorius.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sartorius.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sartorius.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sartorius.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sartorius.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sartorius.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sartorius.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=5&subd=sartorius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sartorius.wordpress.com/2006/08/30/ripping-dvd-audio-to-ogg-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7c56947cab257a5d96fae0787331905?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Joey</media:title>
		</media:content>
	</item>
		<item>
		<title>Trying stuff out</title>
		<link>http://sartorius.wordpress.com/2006/02/03/trying-stuff-out/</link>
		<comments>http://sartorius.wordpress.com/2006/02/03/trying-stuff-out/#comments</comments>
		<pubDate>Fri, 03 Feb 2006 04:10:28 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">https://sartorius.wordpress.com/2006/08/06/trying-stuff-out/</guid>
		<description><![CDATA[Now I remember why Linux can be a bit frustrating at times. I tried using Ubuntu, Kubuntu, and Opensuse today. Ubuntu and Kubuntu work well right from the get go. Opensuse had a few problems.
Ubuntu
Pros

Easy install, only 1 CD
Autodetected everything
Almost everything worked straight out of the box
Active support forums

Cons

Limited amount of packages on the CD
Some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=3&subd=sartorius&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Now I remember why Linux can be a bit frustrating at times. I tried using Ubuntu, Kubuntu, and Opensuse today. Ubuntu and Kubuntu work well right from the get go. Opensuse had a few problems.</p>
<h3>Ubuntu</h3>
<p>Pros</p>
<ol>
<li>Easy install, only 1 CD</li>
<li>Autodetected everything</li>
<li>Almost everything worked straight out of the box</li>
<li>Active support forums</li>
</ol>
<p>Cons</p>
<ol>
<li>Limited amount of packages on the CD</li>
<li>Some packages dated</li>
<li>Defaults to Gnome only</li>
</ol>
<p>Ubuntu is a relatively new distro based on Debian and financed by some rich dude from Africa. The objective of Ubuntu is to provide a simple, free, and easy-to-use operating system for all the peoples of the world. I installed the i386 version 5.10 from a CD. Installation was very easy and took less than 15 minutes. Everything was automagically detected and installed. There was no package selection although you can do a base &#8220;server&#8221; install at boot time.  Ubuntu does not create a root account. Instead it creates an &#8220;admin&#8221; account which is also the default user account. It also defaults to the Gnome desktop although KDE can be installed after the initial system installation. It comes with a limited selection of packages, with usually just one tool to do a job. The default web browser is Firefox 1.0.7. I was a bit disappointed that Firefox 1.5 was not included and that there are currently no 1.5 packages available. Firefox can still be downloaded from the Mozilla website and installed manually. The default mail client was Evolution, but since I use Gmail, I did not evaluate it.  Package management seemed to be fairly easy although I am faily ignorant of the process. The default package manager seemed to work well and had a simple, intuitive interface. A nifty auto-update feature is also included in the OS.</p>
<h3>Kubuntu</h3>
<p>Pros</p>
<ol>
<li>Easy install, only 1 CD</li>
<li>Autodetected everything</li>
<li>Most things worked straight out of the box</li>
</ol>
<p>Cons</p>
<ol>
<li>Support forums not as helpful</li>
<li>Some packages dated</li>
<li>Defaults to KDE only</li>
<li>Configuration not too easy once installed</li>
<li>Small selection of packages</li>
</ol>
<p>Kubuntu is an offshoot of Ubuntu that installs the KDE desktop by default. It is not a fork of Ubuntu and is an actively developed part of the project. Gnome can be installed if needed after the initial system installation. Although Kubuntu is part of the Ubuntu project, it is easy to tell that it is not as well integrated as the original and has a smaller user base.  Most of the packages are the same as in Ubuntu. Konquerer is installed as the default web browser and Firefox is not included. Version 1.0.7 can be installed via the package manager, or 1.5 can be manually installed. Kontact was the default email client, but once again I did not evaluate it because I use Gmail.  The package manager was somewhat disappointing. To be honest the interface was so confusing, I never figured out how to use it. More work is needed on this from in Kubuntu.</p>
<h3>Opensuse</h3>
<p>Pros</p>
<ol>
<li>Large selection of packages on 5 CDs</li>
<li>Defaults to WM of choice</li>
<li>Good autodetection</li>
</ol>
<p>Cons</p>
<ol>
<li>Locked up during install</li>
<li>Packages spread out across 5 CDs at random</li>
<li>Did not detect sound card</li>
<li>Did not create non-root user during install</li>
</ol>
<p>Opensuse is the free community project for Suse Linux sponsered by Novell. Opensuse is a desktop Linux system, but can be configured to do almost anything. The heart of Opensuse is Novell&#8217;s YaST administration program. I installed the amd64 version 10.0 from 5 CDs. A net install is also available, but I could not get it to work. I selected all of the defaults including all of the default packages. I was disappointed to see that all 5 discs were necessary in the default install although most of the packages came off the first two discs. The install also hung while attempting to get updates. I had to shell out and kill the install. Luckily it was nearly complete and produced a bootable system, but no users were created and my sound card was not configured or even detected. When I rebooted the installation did not complete. I logged in as root and created a user account. On a happy note, my Windows partitions were auto-mounted at boot, although my Grub install was corrupted and would not boot to Windows.  Once logged in as a user, the system seemed to work fairly well. Both Konquerer and Firefox were installed, although Firefox was only version 1.0.6. I also noticed some connectivity issues in Konquerer although I could not determine their cause. Email was not evaluated.  Package management was handle by YaST. It seemed to work well and with a little learning effort might be easy to use. Auto-update is also available although it is turned off by default and I could not determine if it really worked.</p>
<h3>Conclusion</h3>
<p>It was clear to me that all three distros I evaluated worked and could be made to function for anyone willing to learn. Ubuntu seemed to be the most polished of the systems, and Opensuse seemed to be the most robust. Kubuntu seemed to need the most work from a usability standpoint although it was just as stable as Ubuntu. I think I will reinstall Ubuntu and evaluate it on a more detailed level. It seems to be the one that could most likely be used as a primary OS.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sartorius.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sartorius.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sartorius.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sartorius.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sartorius.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sartorius.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sartorius.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sartorius.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sartorius.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sartorius.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sartorius.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sartorius.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sartorius.wordpress.com&blog=307307&post=3&subd=sartorius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sartorius.wordpress.com/2006/02/03/trying-stuff-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7c56947cab257a5d96fae0787331905?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Joey</media:title>
		</media:content>
	</item>
	</channel>
</rss>