<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Omegamormegil's Weblog</title>
	<atom:link href="http://omegamormegil.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://omegamormegil.wordpress.com</link>
	<description>A blog about Ubuntu Linux, Technology, Free Culture, etc.</description>
	<lastBuildDate>Tue, 28 Jun 2011 00:06:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='omegamormegil.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/589bfdf132c4a2340f83ad53a6d17b08?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Omegamormegil's Weblog</title>
		<link>http://omegamormegil.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://omegamormegil.wordpress.com/osd.xml" title="Omegamormegil&#039;s Weblog" />
	<atom:link rel='hub' href='http://omegamormegil.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to mount filesystems from the command line in Ubuntu 10.04 and 10.10</title>
		<link>http://omegamormegil.wordpress.com/2010/10/23/how-to-mount-filesystems-from-the-command-line-in-ubuntu-10-04-and-10-10/</link>
		<comments>http://omegamormegil.wordpress.com/2010/10/23/how-to-mount-filesystems-from-the-command-line-in-ubuntu-10-04-and-10-10/#comments</comments>
		<pubDate>Sat, 23 Oct 2010 16:04:50 +0000</pubDate>
		<dc:creator>omegamormegil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[10.04]]></category>
		<category><![CDATA[10.10]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Lucid]]></category>
		<category><![CDATA[Maverick]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://omegamormegil.wordpress.com/?p=256</guid>
		<description><![CDATA[If you have recently tried to mount a filesystem in Ubuntu Lucid or Ubuntu Maverick from the command line in a Gnome friendly way you have probably run into some trouble.  The pre-Lucid methods involved the use of gnome-mount or pmount, but both of these utilities rely on HAL (the Hardware Abstraction Layer) which has [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=256&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you have recently tried to mount a filesystem in <a href="http://en.wikipedia.org/wiki/Ubuntu_(operating_system)" target="_blank">Ubuntu</a> Lucid or Ubuntu Maverick from the command line in a <a href="http://en.wikipedia.org/wiki/GNOME" target="_blank">Gnome</a> friendly way you have probably run into some trouble.  The pre-Lucid methods involved the use of gnome-mount or pmount, but both of these utilities rely on HAL (the Hardware Abstraction Layer) which has been deprecated in favor of new functionality in <a href="http://en.wikipedia.org/wiki/Udev" target="_blank">udev</a>, the Linux kernel, and <a href="http://en.wikipedia.org/wiki/GVFS" target="_blank">gvfs</a>.</p>
<p>You might ask why someone wouldn&#8217;t just want to use plain old mount and fstab to handle mounting.  Mount and fstab work great for behind the scenes filesystems you never need to unplug (such as external hard drives for automatic backups), but if you like to eject/safely remove/unmount your devices from the graphical interface in Ubuntu you will be out of luck.  Also, the mount command requires superuser privileges while the graphical methods in Ubuntu do not.</p>
<p>The solution is apparently the new gvfs-mount command, available through the gvfs-bin package.  While documentation on this utility is scant (no manpage!), devices can be mounted by executing:</p>
<p style="padding-left:30px;">gvfs-mount -d /dev/&lt;devicename&gt;</p>
<p style="padding-left:30px;">Note:  When I execute this command from a terminal, I am greeted by 4 &#8220;Critical&#8221; warnings about various failures.  Surprisingly, this does not mean the command didn&#8217;t work.  Check your Desktop or /mount for your device.</p>
<p>This command can be executed by non-root users, and the mounting appears to be handled in exactly the same manner as the graphical method (desktop shortcut, mounting as /mount/&lt;disk label or UUID&gt;).  Filesystems mounted with this command can be unmounted with a right-click from the Desktop or though the side pane in Nautilus.</p>
<p>Unmounting from the command line can be accomplished with this command:</p>
<p style="padding-left:30px;">gvfs-mount -u /media/&lt;disk label or UUID&gt;</p>
<p>For some reason, the -d switch with the /dev/&lt;devicename&gt; path does not appear to work.</p>
<p>Hopefully you have found this helpful.  If you found this useful, or if you have some tips on using gvfs-mount, or if you have a better way of doing this, please leave me a comment!</p>
<br />Filed under: <a href='http://omegamormegil.wordpress.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://omegamormegil.wordpress.com/tag/10-04/'>10.04</a>, <a href='http://omegamormegil.wordpress.com/tag/10-10/'>10.10</a>, <a href='http://omegamormegil.wordpress.com/tag/gnome/'>GNOME</a>, <a href='http://omegamormegil.wordpress.com/tag/linux/'>Linux</a>, <a href='http://omegamormegil.wordpress.com/tag/lucid/'>Lucid</a>, <a href='http://omegamormegil.wordpress.com/tag/maverick/'>Maverick</a>, <a href='http://omegamormegil.wordpress.com/tag/mount/'>mount</a>, <a href='http://omegamormegil.wordpress.com/tag/ubuntu/'>Ubuntu</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omegamormegil.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omegamormegil.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omegamormegil.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omegamormegil.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omegamormegil.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omegamormegil.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omegamormegil.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omegamormegil.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omegamormegil.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omegamormegil.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omegamormegil.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omegamormegil.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omegamormegil.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omegamormegil.wordpress.com/256/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=256&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omegamormegil.wordpress.com/2010/10/23/how-to-mount-filesystems-from-the-command-line-in-ubuntu-10-04-and-10-10/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omegamormegil</media:title>
		</media:content>
	</item>
		<item>
		<title>How to permanently change OpenOffice.org Writer&#8217;s margins to 1 inch</title>
		<link>http://omegamormegil.wordpress.com/2009/09/29/how-to-permanently-change-openoffice-org-writers-margins-to-1-inch/</link>
		<comments>http://omegamormegil.wordpress.com/2009/09/29/how-to-permanently-change-openoffice-org-writers-margins-to-1-inch/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 16:05:28 +0000</pubDate>
		<dc:creator>omegamormegil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://omegamormegil.wordpress.com/?p=249</guid>
		<description><![CDATA[As I&#8217;ve been hearing from people frustrated with this issue a lot lately, and have also recently learned how to correct it, I thought I&#8217;d share.  OpenOffice.org Writer&#8217;s default margins are set to 0.79&#8243;, which is equivalent to 2 cm, apparently a standard in some other parts the world.  Correcting this permanently requires creating a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=249&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.openoffice.org"><img class="alignleft" title="OpenOffice.org" src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/af/OOoWriter.svg/128px-OOoWriter.svg.png" alt="" width="128" height="128" /></a>As I&#8217;ve been hearing from people frustrated with this issue a lot lately, and have also recently learned how to correct it, I thought I&#8217;d share.  OpenOffice.org Writer&#8217;s default margins are set to 0.79&#8243;, which is equivalent to 2 cm, apparently a standard in some other parts the world.  Correcting this permanently requires creating a new default document template for OOo Writer, which is actually pretty easy.</p>
<p>First, open up OpenOffice.org Writer and make the document just the way you like it.  You can change the default font, add headers, change the line spacing, or whatever.  Just don&#8217;t forget to change all the margins to 1&#8243; (If you are having trouble doing this go to Format &gt; Page and in the bottom left corner change top, bottom, left, and right to 1.00&#8243;, and hit OK).</p>
<p>Next, go to File &gt; Templates &gt; Save.  In the new window, click in the New Templates field, and give your template a name such as &#8220;My New Default Template With One Inch Margins&#8221; or whatever you&#8217;d like to call it.  In the category box, leave My Templates selected, and click OK.</p>
<p>The last step is to make this new template the default for new OOo Writer documents.  To do this, go to File &gt; Templates &gt; Organize.  Double click the My Templates folder in the left pane, and select the template you just created.  Next, click the Commands button, and click the Set as Default Template option, and click Close.</p>
<p>That&#8217;s it!  From now on, all new documents you create will have the correct margins.  If  you found this helpful, leave me a comment to let me know!</p>
<br />Posted in Uncategorized Tagged: howto, OpenOffice.org <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omegamormegil.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omegamormegil.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omegamormegil.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omegamormegil.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omegamormegil.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omegamormegil.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omegamormegil.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omegamormegil.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omegamormegil.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omegamormegil.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omegamormegil.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omegamormegil.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omegamormegil.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omegamormegil.wordpress.com/249/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=249&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omegamormegil.wordpress.com/2009/09/29/how-to-permanently-change-openoffice-org-writers-margins-to-1-inch/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omegamormegil</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/thumb/a/af/OOoWriter.svg/128px-OOoWriter.svg.png" medium="image">
			<media:title type="html">OpenOffice.org</media:title>
		</media:content>
	</item>
		<item>
		<title>Abiword Use Case:  Writing papers for college</title>
		<link>http://omegamormegil.wordpress.com/2009/09/27/abiword-use-case-writing-papers-for-college/</link>
		<comments>http://omegamormegil.wordpress.com/2009/09/27/abiword-use-case-writing-papers-for-college/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 21:57:04 +0000</pubDate>
		<dc:creator>omegamormegil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Abiword]]></category>
		<category><![CDATA[OpenOffice.org]]></category>
		<category><![CDATA[ODF]]></category>
		<category><![CDATA[MS Word]]></category>
		<category><![CDATA[Howard Community College]]></category>
		<category><![CDATA[MLA Format]]></category>

		<guid isPermaLink="false">http://omegamormegil.wordpress.com/?p=242</guid>
		<description><![CDATA[A while back, I wrote about how Abiword was my favorite word processor, due to it&#8217;s simplicity and low system requirements and some killer features other word processors lack.  Not to mention it costs $0 and works on Windows, Mac and Linux.  As I am now back in school, I naturally decided to put Abiword [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=242&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.abisource.com/"><img class=" alignleft" title="Abiword" src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/AbiWord.png/120px-AbiWord.png" alt="Abiword" width="120" height="120" /></a></p>
<p>A while back, I wrote about how <a title="The makers of Abiword:  Abisource" href="http://www.abisource.com" target="_blank">Abiword</a> was my <a title="Abiword is Awesome" href="http://omegamormegil.wordpress.com/2009/04/21/abiword-is-awesome/" target="_blank">favorite word processor</a>, due to it&#8217;s simplicity and low system requirements and some killer features other word processors lack.  Not to mention it costs $0 and works on Windows, Mac and Linux.  As I am now back in school, I naturally decided to put Abiword to the test by using it as my primary word processor for completing assignments.</p>
<p>For some background on my environment, I am currently attending <a title="Howard Community College" href="http://howardcc.edu" target="_blank">Howard Community College</a> which uses Microsoft Windows XP exclusively in all of it&#8217;s classrooms and computer labs, and provides MS Word 2007 on all of it&#8217;s computers for word processing.  I complete almost all of my schoolwork on my Dell Mini 9, currently running a pre-release version of <a title="What is Ubuntu?" href="http://www.ubuntu.com/products/whatisubuntu" target="_blank">Ubuntu Linux</a> 9.10.  I do frequently need to use the college&#8217;s Windows XP systems for purposes of printing documents and completing online classwork in rooms without Wifi.</p>
<p>For the most part, I have found Abiword to meet my needs satisfactorily.  Abiword starts extremely fast on my computer, and provides sufficient tools for doing almost everything I need to do.  While Abiword does support MS Word document format (.doc) and <a title="Wikipeida:  OpenDocument format" href="http://en.wikipedia.org/wiki/OpenDocument_format" target="_blank">OpenDocument Format (.odt)</a>, I have chosen to stick with the default .abw format so I don&#8217;t need to worry about any formating incompatibilities when I go to print my completed work.  I initially intended to save all of my finished documents to PDF for final printing (saved to a USB flash drive), but I discovered that while my PDFs are perfect in Ubuntu, they were all blank documents in Windows.  (I attempted this with 3 documents using Abiword&#8217;s built in save as PDF feature.  Exporting to PDF in Ubuntu using OpenOffice.org works fine).  Luckily, I had the installer for Abiword on my USB flash drive, and installation of the word processor only takes about 15 seconds.  Once Abiword was installed in Windows, printing my .abw documents were simple.  Another option I could try is installing and running Abiword directly from my USB flash drive.  This is reported to work very well, and very simple instructions are available <a title="Abiword on a Stick" href="http://www.pcstats.com/articleview.cfm?articleid=1676&amp;page=6" target="_blank">here</a>.</p>
<p>My greatest challenge in using Abiword came when I was required to use <a title="MLA Formatting" href="http://en.wikipedia.org/wiki/Mla_format" target="_blank">MLA formating</a> for the first of many essays I&#8217;ll be writing.  First, Abiword doesn&#8217;t have a typical outline generation option, but this honestly made it easier for me to crank out the outline according to the required format (I., A., 1., a).  To be clear, Abiword can be used to generate outline numbering, but it doesn&#8217;t automatically handle the hierarchy part.  To add an indented section you just tab in (after adjusting the tab stops), and start a new numbered list.  Abiword also supports the feature of continuing a numbered list from a previous part of the outline, which makes the task easier.  The one thing Abiword could not handle, was the seemingly simple task of changing the format of the page numbering.  I was required to use lowercase Roman Numerals for the outline, and Abiword doesn&#8217;t support changing the formating of the page numbers at all.</p>
<p><a title="Get OpenOffice.org" href="http://www.openoffice.org/" target="_blank">OpenOffice.org</a> (which also costs $0 and runs on Windows, Mac, and Linux) came to the rescue.  I tried saving my Abiword document in OpenOffice.org Writer&#8217;s format (.odt), but I lost all of the outline formatting I had worked so hard on (Abiword does support saving to .odt document format, but it&#8217;s not 100%).  In contrast to Abiword, re-formatting the outline in OOo Writer was a major pain.  OOo Writer does have a traditional style word processor outline tool (where it tries to guess what you want to do with the outline, Clippy style) but it only managed to make the job more complicated and more difficult.  OOo Writer also generates the numbering/lettering of the outline hierarchy for you, but none of the options available matched the specific formatting I was required to use, so I had to do some tricky tabbing in the end anyway.   Writer gave me no problems changing the page numbering to lowercase Roman numerals which was fantastic.</p>
<p>In the end, I still think Abiword is Awesome, but I don&#8217;t think I&#8217;ll be using it for any formal papers anytime soon.  For that task, I&#8217;ll stick with OpenOffice.org Writer.  Another advantage of using OpenOffice.org for my schoolwork is that OOo Writer&#8217;s default document format .odt is supported by MS Word 2007, and I&#8217;ve noticed no formatting issues opening .odt files in Word &#8217;07 for printing (thanks Microsoft).</p>
<p>In conclusion, Abiword is a fast, easy to use word processor, but it doesn&#8217;t provide me with all of the tools I need for writing essays in college.  If anyone knows how to get Abiword to change the formatting of page numbers, or if you&#8217;d like to share your experiences using Abiword, OpenOffice.org Writer, or another alternative word processor in an educational environment, please leave a comment!</p>
<br />Posted in Uncategorized Tagged: Abiword, free software, Howard Community College, Microsoft, MLA Format, MS Word, ODF, OpenOffice.org, Ubuntu <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omegamormegil.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omegamormegil.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omegamormegil.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omegamormegil.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omegamormegil.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omegamormegil.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omegamormegil.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omegamormegil.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omegamormegil.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omegamormegil.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omegamormegil.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omegamormegil.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omegamormegil.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omegamormegil.wordpress.com/242/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=242&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omegamormegil.wordpress.com/2009/09/27/abiword-use-case-writing-papers-for-college/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omegamormegil</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/AbiWord.png/120px-AbiWord.png" medium="image">
			<media:title type="html">Abiword</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft is now an Open Source company?</title>
		<link>http://omegamormegil.wordpress.com/2009/07/20/microsoft-is-now-an-open-source-company/</link>
		<comments>http://omegamormegil.wordpress.com/2009/07/20/microsoft-is-now-an-open-source-company/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 19:20:25 +0000</pubDate>
		<dc:creator>omegamormegil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[GPL]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[Moonlight]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://omegamormegil.wordpress.com/?p=230</guid>
		<description><![CDATA[Just today, Microsoft has contributed 20,000 lines of code to Linux, licensed under the GPLv2. This is the first time Microsoft has chosen to use the GPL to license it&#8217;s own code.  The software they&#8217;ve released today helps to make Linux work better when running in a virtual machine on top of Microsoft&#8217;s Hyper-V hypervisor. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=230&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just today, Microsoft has contributed 20,000 lines of code to Linux, licensed under the GPLv2. This is the first time Microsoft has chosen to use the <a href="http://www.gnu.org/copyleft/gpl.html" target="_blank">GPL</a> to license it&#8217;s own code.  The software they&#8217;ve released today helps to make Linux work better when running in a virtual machine on top of Microsoft&#8217;s Hyper-V hypervisor.</p>
<p><a href="http://www.microsoft.com/presspass/features/2009/Jul09/07-20LinuxQA.mspx" target="_blank">Microsoft&#8217;s announcement</a> was a big surprise coming from the same company who <a href="http://news.cnet.com/2010-1071-281466.html" target="_blank">argued</a> that the &#8220;[GPL] debases the currency of the ideas and labor that transform great ideas into great products&#8221; and have compared it to a virus.</p>
<p>While this is the first time Microsoft has released code under the GPL, it isn&#8217;t the first contribution Microsoft has made to Free Software.  For example, in January of this year, Microsoft made it&#8217;s<a href="http://www.sdtimes.com/content/article.aspx?ArticleID=33204" target="_blank"> first contribution</a> to the Apache project.  Microsoft&#8217;s Bing search engine <a href="http://www.theregister.co.uk/2009/06/04/bing_and_powerset/" target="_blank">includes</a> some open source code.  Microsoft also has it&#8217;s own Free Software license called the Microsoft Public License (Ms-PL) which <a href="http://www.fsf.org/licensing/licenses/index_html#GPLIncompatibleLicenses" target="_blank">is recognized as such</a> by the Free Software Foundation.</p>
<p>Microsoft has also been showing support for <a href="http://mono-project.com/Main_Page" target="_blank">Mono</a> with <a href="http://port25.technet.com/archive/2009/07/06/the-ecma-c-and-cli-standards.aspx" target="_blank">promises not to sue</a> Mono users for patent violations.  I was also surprised to notice that <a href="http://www.microsoft.com/video" target="_blank">Microsoft&#8217;s video website</a>, which requires the Silverlight plugin, redirects Linux users to Mono&#8217;s <a href="http://go-mono.com/moonlight/" target="_blank">Moonlight plugin page</a>.</p>
<p>So, what&#8217;s next?  Perhaps Windows 8 will run on the Linux kernel.</p>
<br />Posted in Uncategorized Tagged: free software, GPL, Linux, Microsoft, Mono, Moonlight, Open Source, Silverlight, virtualization <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omegamormegil.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omegamormegil.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omegamormegil.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omegamormegil.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omegamormegil.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omegamormegil.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omegamormegil.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omegamormegil.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omegamormegil.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omegamormegil.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omegamormegil.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omegamormegil.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omegamormegil.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omegamormegil.wordpress.com/230/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=230&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omegamormegil.wordpress.com/2009/07/20/microsoft-is-now-an-open-source-company/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omegamormegil</media:title>
		</media:content>
	</item>
		<item>
		<title>Is Ubuntu more popular than every other Linux distribution combined?</title>
		<link>http://omegamormegil.wordpress.com/2009/07/06/is-ubuntu-more-popular-than-every-other-linux-distribution-combined/</link>
		<comments>http://omegamormegil.wordpress.com/2009/07/06/is-ubuntu-more-popular-than-every-other-linux-distribution-combined/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 01:23:52 +0000</pubDate>
		<dc:creator>omegamormegil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Canonical]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Novell]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[Red Hat]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://omegamormegil.wordpress.com/?p=223</guid>
		<description><![CDATA[I just read an interesting, albeit admittedly unscientific, post by Starry Hope on the popularity of Ubuntu.  Here are the two graphs from the post which I found to be the most interesting. Google Search volume of Ubuntu compared to Debian, Fedora/Red Hat, and openSUSE: Ubuntu compared to the top ten other Linux distributions combined: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=223&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just read an interesting, albeit admittedly unscientific, <a href="http://www.starryhope.com/articles/2009/ubuntu-still-popular/" target="_blank">post by Starry Hope </a>on the popularity of Ubuntu.  Here are the two graphs from the post which I found to be the most interesting.</p>
<p>Google Search volume of Ubuntu compared to Debian, Fedora/Red Hat, and openSUSE:<a href="http://www.google.com/trends?q=ubuntu%2C+debian%2C+fedora+|+(fedora+core)+|+redhat+|+(red+hat)%2C+opensuse+|+suse&amp;ctab=0&amp;geo=all&amp;date=all&amp;sort=0"><img class="alignnone" title="Google search volumeof the top 4 Linux Distros compared" src="http://static.starryhope.com/i/articles/google_trends1.png" alt="" width="422" height="221" /></a></p>
<p>Ubuntu compared to the top ten other Linux distributions <em>combined:<a href="http://www.google.com/trends?q=ubuntu%2C+PCLinuxOS+|+suse+|+(open+suse)+|+opensuse+|+fedora+|+(fedora+core)+|+fedoracore+|+redhat+|+(red+hat)+|+Sabayon|+debian+|+CentOS+|+(linux+mint)+|+(mint+linux)+|+Mandriva+|+(puppy+linux)&amp;ctab=0&amp;geo=all&amp;date=all&amp;sort=0"><img class="alignnone" title="Google search volume of Ubuntu compared to the next top ten Linux Distros" src="http://static.starryhope.com/i/articles/google_trends2.png" alt="" width="420" height="208" /></a></em></p>
<p>If you think Google search volume is a fair indicator of popularity, than it&#8217;s pretty clear that Ubuntu is more popular than all the rest of the Linux distributions put together.</p>
<p>While I think there is good reason for Ubuntu to be so far out in front, I hope that we in the Ubuntu Community don&#8217;t let that reality go to our heads, but continue to be good citizens in the greater Linux Community.  While Ubuntu may be the most popular distrubution, <a href="http://www.canonical.com/" target="_blank">Canonical</a> (Ubuntu&#8217;s source of paid development) isn&#8217;t very profitable (yet?) and depends on the development efforts paid for by the makers of competing distrubutions like <a href="http://www.redhat.com/" target="_blank">Red Hat</a> and <a href="http://www.novell.com/linux/" target="_blank">Novell</a> to produce much of the software which makes Ubuntu complete.</p>
<br />Posted in Uncategorized Tagged: Canonical, Debian, Fedora, Linux, Novell, openSUSE, Red Hat, Ubuntu <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omegamormegil.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omegamormegil.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omegamormegil.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omegamormegil.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omegamormegil.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omegamormegil.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omegamormegil.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omegamormegil.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omegamormegil.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omegamormegil.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omegamormegil.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omegamormegil.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omegamormegil.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omegamormegil.wordpress.com/223/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=223&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omegamormegil.wordpress.com/2009/07/06/is-ubuntu-more-popular-than-every-other-linux-distribution-combined/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omegamormegil</media:title>
		</media:content>

		<media:content url="http://static.starryhope.com/i/articles/google_trends1.png" medium="image">
			<media:title type="html">Google search volumeof the top 4 Linux Distros compared</media:title>
		</media:content>

		<media:content url="http://static.starryhope.com/i/articles/google_trends2.png" medium="image">
			<media:title type="html">Google search volume of Ubuntu compared to the next top ten Linux Distros</media:title>
		</media:content>
	</item>
		<item>
		<title>KOffice 2.0 has been released!</title>
		<link>http://omegamormegil.wordpress.com/2009/06/05/koffice-2-0-has-been-released/</link>
		<comments>http://omegamormegil.wordpress.com/2009/06/05/koffice-2-0-has-been-released/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 00:02:39 +0000</pubDate>
		<dc:creator>omegamormegil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Abiword]]></category>
		<category><![CDATA[KOffice]]></category>
		<category><![CDATA[OpenOffice.org]]></category>
		<category><![CDATA[ODF]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[KOffice 2.0]]></category>

		<guid isPermaLink="false">http://omegamormegil.wordpress.com/?p=205</guid>
		<description><![CDATA[The long anticipated KOffice 2.0 release is now available for Linux, Windows and Mac users!  Be advised that the KOffice folks say that this release isn&#8217;t actually considered stable, and is intended for developers and early adopters only, similar to how KDE 4.0 wasn&#8217;t a stable release.  KOffice 2 is a port to the new [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=205&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The long anticipated KOffice 2.0 release is now available for Linux, Windows and Mac users!  Be advised that the KOffice folks say that this release isn&#8217;t actually considered stable, and is intended for developers and early adopters only, similar to how KDE 4.0 wasn&#8217;t a stable release.  KOffice 2 is a port to the new QT 4 and KDE 4 libraries, and has a couple cool new features such as better KOffice component integration and the switch to using ODF as the default document formats.  (In contrast, AbiWord <a href="http://magazine.redhat.com/2008/05/08/abiword-team-interview/" target="_blank">only <strong>supports</strong> ODT</a> and will not use it as the default format.)</p>
<p>KOffice 2 feels much faster than OpenOffice.org, and has more features than Abiword.  I also really appreciate that ODF is the default format for KOffice as this means that compatibility with OpenOffice.org documents should be perfect.  My only problem with using KOffice is that the list of required dependencies is considerably longer than it would be were I using KDE in place of Gnome, as KOffice is designed to use the KDE libraries.  The installation size for KWord on my Dell Mini 9 running Ubuntu 9.04 system (with a 4GB SSD) is 160MB compared to 26.3MB for Abiword or 186MB for OpenOffice.org Writer.  <em>Note: the installation size of KWord would be much smaller were I running KDE, and the installation size of Abiword would be much larger were I not already running Gnome.</em></p>
<p>The KOffice 2.1 release is currently expected to be out <a href="http://wiki.koffice.org/index.php?title=Schedules/KOffice/2.1/Release_Plan" target="_blank">later this year</a>, which should be more stable and more appropriate for everyday use.</p>
<p>Click <a href="http://www.koffice.org/2009/05/koffice-200-released/" target="_blank">here</a> for the official KOffice 2.0 release announcement.</p>
<br />Posted in Uncategorized Tagged: Abiword, GNOME, KDE, KOffice, KOffice 2.0, ODF, OpenOffice.org, Ubuntu <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omegamormegil.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omegamormegil.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omegamormegil.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omegamormegil.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omegamormegil.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omegamormegil.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omegamormegil.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omegamormegil.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omegamormegil.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omegamormegil.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omegamormegil.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omegamormegil.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omegamormegil.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omegamormegil.wordpress.com/205/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=205&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omegamormegil.wordpress.com/2009/06/05/koffice-2-0-has-been-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omegamormegil</media:title>
		</media:content>
	</item>
		<item>
		<title>Abiword is Awesome</title>
		<link>http://omegamormegil.wordpress.com/2009/04/21/abiword-is-awesome/</link>
		<comments>http://omegamormegil.wordpress.com/2009/04/21/abiword-is-awesome/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 21:27:48 +0000</pubDate>
		<dc:creator>omegamormegil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Jaunty Jackalope]]></category>
		<category><![CDATA[Ubuntu 9.04]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Abiword]]></category>
		<category><![CDATA[KOffice]]></category>
		<category><![CDATA[OpenOffice.org]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[Google Docs]]></category>
		<category><![CDATA[Dell Mini 9]]></category>
		<category><![CDATA[ODF]]></category>
		<category><![CDATA[MS Word]]></category>

		<guid isPermaLink="false">http://omegamormegil.wordpress.com/?p=192</guid>
		<description><![CDATA[Abiword has just become my new favorite word processor.  It&#8217;s always been nice for being so quick and low on resources (installing Abiword requires 26.3 MB in Ubuntu 9.04 compared to 186 MB for OpenOffice.org Writer), but the 2.6 release of Abiword has added two new features which have pushed it over the top for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=192&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.abisource.com/"><img class="alignleft" title="Abiword" src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/AbiWord.png/120px-AbiWord.png" alt="" width="120" height="120" /></a><a href="http://en.wikipedia.org/wiki/Abiword" target="_blank">Abiword</a> has just become my new favorite word processor.  It&#8217;s always been nice for being so quick and low on resources (installing Abiword requires 26.3 MB in Ubuntu 9.04 compared to 186 MB for <a href="http://www.openoffice.org/" target="_blank">OpenOffice.org</a> Writer), but the <a href="http://www.abisource.com/release-notes/2.6.0.phtml" target="_blank">2.6 release of Abiword</a> has added two new features which have pushed it over the top for me.</p>
<p>First, Abiword now has .odt (<a href="http://en.wikipedia.org/wiki/OpenDocument" target="_blank">OpenDocument</a> Text) support, so making the switch from OpenOffice.org is a lot less painful.  This is a feature I&#8217;ve also been waiting for in <a href="http://www.koffice.org/" target="_blank">KOffice 2</a> which has finally released it&#8217;s first Release Candidate.</p>
<p>My favorite new feature is the Abiword Collaboration Plugin, which adds Google Docs like collaboration functionality to Abiword.  So now I can collaborate on a document without the requirement of using an online service like Google to host our work.  Abiword supports direct connections over <a href="http://en.wikipedia.org/wiki/Transmission_Control_Protocol" target="_blank">TCP</a>, or you can connect over <a href="http://en.wikipedia.org/wiki/Jabber" target="_blank">Jabber</a>.  It&#8217;s very easy to set up.  After establishing the connection, one person checks the &#8220;Share&#8221; checkbox in their Abiword, publishing the document to the &#8220;Shared Documents&#8221; of the other collaborators, enabling them to open and edit the same document.  Everyone gets their own color coded cursor, just like in Google Docs.  The Abiword developers are also working on an online service called <a href="http://abicollab.net/" target="_blank">AbiCollab.net</a>, which is currently in beta.  This will be an additional ttransport layer for Abiword collaboration, which adds the ability to view the changes a colleague has made to a document before it has been saved to disk.</p>
<p>While it&#8217;s true that Abiword doesn&#8217;t have all the features of MS Word or OpenOffice.org Writer, it does have all the features I have ever wanted in a word processor, and the small footprint works out really well for my new Dell Mini 9.  For an interesting interview with the developers of Abiword, including more on the Collaboration Plugin and ODT support, and more on AbiCollab.net, check out <a href="http://magazine.redhat.com/2008/05/08/abiword-team-interview/" target="_blank">this article</a> from <a href="http://magazine.redhat.com/" target="_blank">Red Hat Magazine</a>.  And if you didn&#8217;t know, Abiword is Free Software and it can be downloaded at no cost <a href="http://www.abisource.com/download/" target="_blank">here</a>.</p>
<br />Posted in Uncategorized Tagged: Abiword, collaboration, Dell Mini 9, free software, Google Docs, Jaunty Jackalope, KOffice, MS Word, ODF, OpenOffice.org, Ubuntu, Ubuntu 9.04 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omegamormegil.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omegamormegil.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omegamormegil.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omegamormegil.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omegamormegil.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omegamormegil.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omegamormegil.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omegamormegil.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omegamormegil.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omegamormegil.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omegamormegil.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omegamormegil.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omegamormegil.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omegamormegil.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=192&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omegamormegil.wordpress.com/2009/04/21/abiword-is-awesome/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omegamormegil</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/AbiWord.png/120px-AbiWord.png" medium="image">
			<media:title type="html">Abiword</media:title>
		</media:content>
	</item>
		<item>
		<title>Shocker: John C. Dvorak has switched from Windows to Ubuntu</title>
		<link>http://omegamormegil.wordpress.com/2009/03/16/shocker-john-c-dvorak-has-switched-from-windows-to-ubuntu/</link>
		<comments>http://omegamormegil.wordpress.com/2009/03/16/shocker-john-c-dvorak-has-switched-from-windows-to-ubuntu/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 04:04:00 +0000</pubDate>
		<dc:creator>omegamormegil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Ubuntu 8.10]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[OSS]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://omegamormegil.wordpress.com/?p=186</guid>
		<description><![CDATA[Don&#8217;t get me wrong. I&#8217;ve always been of the opinion that Dvorak didn&#8217;t give Linux enough of a chance. Even so, I was shocked by his glowing review of Ubuntu 8.10. Ubuntu made such a good impression on him that Dvorak went from this: Though the Linux community does not want to admit this, Linux [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=186&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t get me wrong. I&#8217;ve always been of the opinion that Dvorak didn&#8217;t give Linux enough of a chance. Even so, I was shocked by his glowing review of Ubuntu 8.10.</p>
<p>Ubuntu made such a good impression on him that Dvorak went from <a href="http://www.pcmag.com/article2/0,2817,762868,00.asp" target="_blank">this</a>:</p>
<blockquote><p><span>Though the Linux community does not want to admit this, Linux has become a pale imitation of the evil OS it intends to replace. On some levels, Linux is better, but from most perspectives it is summarized as &#8220;not quite as good but a lot cheaper.&#8221;<br />
</span></p></blockquote>
<p><span>To this:</span></p>
<blockquote><p><span>&#8230;I seriously like the <a href="http://www.ubuntu.com/" target="_new">Ubuntu 8.10</a> implementation and will now install it permanently on my latest machines. It&#8217;s a winner&#8230;</span><span>It&#8217;s so good that I&#8217;m a little annoyed with myself for not getting to it sooner.</span></p>
<p>I cannot wean myself off Windows altogether because, well, I write about Windows. But for ancillary machines that I put together where I need reliability and low price, I&#8217;m always going to see whether Ubuntu works. And if it does, that&#8217;s what gets installed.</p>
<p>If I had a small or mid-size company, I&#8217;d probably use only Linux and open-source software&#8230;</p></blockquote>
<p>It&#8217;s about time.</p>
<p>For the full text of Dvorak&#8217;s post about switching to Ubuntu, just click <a href="http://www.pcmag.com/article2/0,2817,2342703,00.asp" target="_blank">here</a>.  If you are considering trying Ubuntu but still need a little more convincing, here are the reasons I think you should be running Ubuntu:  <a href="http://omegamormegil.wordpress.com/2008/11/18/a-few-good-reasons-to-switch-to-ubuntu/" target="_self">A few good reasons to switch to Ubuntu</a>.</p>
<br />Posted in Uncategorized Tagged: FOSS, free software, Linux, OSS, Ubuntu, Ubuntu 8.10, Windows <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omegamormegil.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omegamormegil.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omegamormegil.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omegamormegil.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omegamormegil.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omegamormegil.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omegamormegil.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omegamormegil.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omegamormegil.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omegamormegil.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omegamormegil.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omegamormegil.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omegamormegil.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omegamormegil.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=186&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omegamormegil.wordpress.com/2009/03/16/shocker-john-c-dvorak-has-switched-from-windows-to-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omegamormegil</media:title>
		</media:content>
	</item>
		<item>
		<title>Ex-Adware Designer Explains How Adware Works, Vulnerabilities in Internet Explorer</title>
		<link>http://omegamormegil.wordpress.com/2009/02/09/ex-adware-designer-explains-how-adware-works-vulnerabilities-in-internet-explorer/</link>
		<comments>http://omegamormegil.wordpress.com/2009/02/09/ex-adware-designer-explains-how-adware-works-vulnerabilities-in-internet-explorer/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 18:51:13 +0000</pubDate>
		<dc:creator>omegamormegil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[adware]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://omegamormegil.wordpress.com/?p=179</guid>
		<description><![CDATA[Sherri Davidoff of philosecurity.org posted an enlightening interview with Matt Knox who was previously employed writing adware for Direct Revenue. A few highlights: The good distributors would say, ‘This is ad-supported software.” Not-so-good distributors actually did distribute through Windows exploits. Also, some adware distributors would sell access. In their licensing terms, the EULA people agree [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=179&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sherri Davidoff of <a href="http://philosecurity.org" target="_blank">philosecurity.org</a> posted an enlightening interview with Matt Knox who was previously employed writing adware for <a href="http://en.wikipedia.org/wiki/Direct_Revenue" target="_blank">Direct Revenue</a>.</p>
<p>A few highlights:</p>
<blockquote><p>The good distributors would say, ‘This is ad-supported software.” Not-so-good distributors actually did distribute through Windows exploits. Also, some adware distributors would sell access. In their licensing terms, the EULA people agree to, they would say “in addition, we get to install any other software we feel like putting<br />
on.” Of course, nobody reads EULAs, so a lot of people agreed to that. If they had, say, 4 million machines, which was a pretty good sized adware network, they would just go up to every other adware distributor and say “Hey! I’ve got 4 million machines. Do you want to pay 20 cents a machine? I’ll put you on all of them.” At the time there was basically no law around this. EULAs were recognized as contracts and all, so that’s pretty much how distribution happened.</p>
<p>Most adware targets Internet Explorer (IE) users because obviously they’re the biggest share of the market. In addition, they tend to be the less-savvy chunk of the market. If you’re using IE, then either you don’t care or you don’t know about all the vulnerabilities that IE has.</p>
<p>Sherri: In your professional opinion, how can people avoid adware?<br />
Matt: Um, run UNIX.<br />
Sherri: [laughs]<br />
Matt: We did actually get the ad client working under Wine on Linux.<br />
Sherri: That seems like a bit of a stretch!<br />
Matt: That was a pretty limited market, I’d say.</p></blockquote>
<p>Matt also goes into a lot of detail describing the different methods he employed to ensure that it was close to impossible to deactivate the adware once it was running.  Read all about it in the <a href="http://philosecurity.org/2009/01/12/interview-with-an-adware-author" target="_blank">original article</a>.  Thanks to <a href="http://pthree.org/2009/01/30/dont-run-internet-explorer/" target="_blank">Aaron Toponce</a> and <a href="http://www.schneier.com/blog/archives/2009/01/interview_with_10.html" target="_blank">Bruce Schneier</a> for pointing out this great interview.</p>
<p>The bottom line:  If you want to stay free of adware, don&#8217;t use Internet Explorer.  I&#8217;d recommend running <a href="http://www.mozilla.com/en-US/firefox/" target="_blank">Firefox</a> in <a href="http://www.ubuntu.com/getubuntu" target="_blank">Ubuntu</a>.</p>
<br />Posted in Uncategorized Tagged: adware, Firefox, Internet Explorer, Linux, security, Ubuntu, UNIX, Wine <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omegamormegil.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omegamormegil.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omegamormegil.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omegamormegil.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omegamormegil.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omegamormegil.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omegamormegil.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omegamormegil.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omegamormegil.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omegamormegil.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omegamormegil.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omegamormegil.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omegamormegil.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omegamormegil.wordpress.com/179/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=179&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omegamormegil.wordpress.com/2009/02/09/ex-adware-designer-explains-how-adware-works-vulnerabilities-in-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omegamormegil</media:title>
		</media:content>
	</item>
		<item>
		<title>The understated usefulness of SSH, part 2.</title>
		<link>http://omegamormegil.wordpress.com/2009/01/11/the-understated-usefulness-of-ssh-part-2/</link>
		<comments>http://omegamormegil.wordpress.com/2009/01/11/the-understated-usefulness-of-ssh-part-2/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 02:55:05 +0000</pubDate>
		<dc:creator>omegamormegil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[OpenSSH]]></category>
		<category><![CDATA[remote desktop]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VirtualbBox]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[VNC]]></category>
		<category><![CDATA[X11 forwarding]]></category>

		<guid isPermaLink="false">http://omegamormegil.wordpress.com/?p=43</guid>
		<description><![CDATA[Last time, I covered some different ways of using SSH for remote access on a LAN or over the Internet, using RSA keys for secure authentication, and how to use GNU Screen to keep a process running after disconnecting your SSH session.  This time, I&#8217;ll talk about using SSH with X11 forwarding, using VNC with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=43&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://omegamormegil.wordpress.com/2008/12/04/the-understated-usefulness-of-ssh-part-1/" target="_blank">Last time</a>, I covered some different ways of using <a href="http://en.wikipedia.org/wiki/Ssh" target="_blank">SSH</a> for remote access on a <a href="http://en.wikipedia.org/wiki/Local_area_network" target="_blank">LAN</a> or over the Internet, using <a href="http://en.wikipedia.org/wiki/RSA" target="_blank">RSA</a> keys for secure authentication, and how to use GNU Screen to keep a process running after disconnecting your SSH session.  This time, I&#8217;ll talk about using SSH with X11 forwarding, using <a href="http://en.wikipedia.org/wiki/Vnc" target="_blank">VNC</a> with SSH, and making it all run faster by adding compression and changing the <a href="http://en.wikipedia.org/wiki/Cipher" target="_blank">cipher</a> of your SSH session.</p>
<p>X11 forwarding is a feature built into <a href="http://en.wikipedia.org/wiki/X_Window_System_protocols_and_architecture" target="_blank">X </a>which enables you to make use of graphical applications running on a server from another computer over the network (if the server has a <a href="http://en.wikipedia.org/wiki/Graphical_user_interface" target="_blank">GUI</a>).  This technology enables you to use graphical tools to change settings or view files on the remote computer, or to forward graphical applications to your workstation which you might not otherwise have to ability (or desire) to install.  The forwarded applications will actually be running on the server, so your local computer will have it&#8217;s processor and memory free for other things.  To use X11 forwarding in Ubuntu, just add the -X flag to your SSH command like so:</p>
<blockquote><p>ssh -X remoteuser@&lt;remote IP address&gt;</p></blockquote>
<p>Easy, huh?  Now that you&#8217;re logged into the remote computer, you can try typing &#8220;nautilus&#8221; to launch the graphical File Manager.  Notice that the files displayed are those on the remote system, and not your local machine.  You could also try running &#8220;evince&#8221; to read some PDF&#8217;s you have on the server, or &#8220;eog&#8221; to browse your photo collection remotely.  You get the idea.  I find that forwarding <a href="http://www.virtualbox.org/" target="_blank">VirtualBox</a> is very useful.  Doing so enables you to use or administer <a href="http://en.wikipedia.org/wiki/Virtual_machine" target="_blank">Virtual Machines</a> residing on your server, without having to install any software locally, and without taking up a big chuck of your memory.</p>
<p>X11 forwarding is very useful for making use of specific applications, but if you need remote access to the entire desktop you can use <a href="http://en.wikipedia.org/wiki/Vnc" target="_blank">VNC</a>.  VNC can be run over SSH in <a href="https://help.ubuntu.com/community/VNC" target="_blank">a variety of configurations</a>, but I&#8217;ll show you one really easy way which uses X11 forwarding.   Before this will work, VNC access needs to be enabled on the remote computer.  You will also need the xtightvncviewer package installed.  You can install it from the command line by typing &#8220;sudo aptitude install xtightvncviewer&#8221;.  Now that you know how to use X11 forwarding, you can easily set up Ubuntu&#8217;s default VNC client Vino by SSHing into the remote system (remember the -X flag) and running the command &#8220;vino-preferences&#8221;.  On the General tab, all boxes should be checked except for &#8220;Ask you for confirmation&#8221;, and of course, setting a decent password is always a good idea.  After this is all set up, you can start VNC with the command &#8220;vncviewer localhost&#8221; from an existing connection, or in a single command from your local machine like this:</p>
<blockquote><p>ssh -X user@&lt;IP address&gt; vncviewer localhost</p></blockquote>
<p>While X11 forwarding can be extremely useful, it can also be quite slow, particularly across slower network connections or over the Internet.  To speed things up, you can instruct SSH to use compression (employing the same algorithm used by gzip) by adding the -C flag to your SSH command.</p>
<blockquote><p>ssh -C user@&lt;IP address&gt;</p></blockquote>
<p>You can also opt to use a faster but less secure <a href="http://en.wikipedia.org/wiki/Cipher" target="_blank">cipher</a> if you are willing to sacrifice some of the SSH connection&#8217;s security in exchange for increased performance.  There are a variety of ciphers available.  The default cipher used by SSH is AES (the <a href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard" target="_blank">Advanced Encryption Standard</a>) which is extremely secure, and is approved for top secret information by the NSA.  However, it isn&#8217;t the fastest available.  A faster and still quite secure cipher is <a href="http://en.wikipedia.org/wiki/Blowfish_%28cipher%29" target="_blank">Blowfish</a>, which is a good compromise if AES is too slow but you still want to keep the connection secure.  An even faster, but less secure cipher is <a href="http://en.wikipedia.org/wiki/Arcfour" target="_blank">Arcfour</a>.  Arcfour has a few known vulnerabilities, but is still being used in <a href="http://en.wikipedia.org/wiki/Wired_Equivalent_Privacy" target="_blank">WEP</a> and <a href="http://en.wikipedia.org/wiki/Wi-Fi_Protected_Access" target="_blank">WPA</a> <a href="http://en.wikipedia.org/wiki/Wifi" target="_blank">Wi-Fi</a> encryption, Microsoft&#8217;s <a href="http://en.wikipedia.org/wiki/Remote_Desktop_Protocol" target="_blank">RDP</a> protocol, and a number of other cryptosystems in spite of it&#8217;s flaws.</p>
<p>So, to use SSH with the speedier but still secure blowfish cipher, you would type:</p>
<blockquote><p>ssh -c blowfish-cbc user@&lt;IP address&gt;</p></blockquote>
<p>If you wanted to use Arcfour:</p>
<blockquote><p>ssh -c arcfour user@&lt;IP address&gt;</p></blockquote>
<p>Therefore, to connect to the remote system using SSH with X11 forwarding enabled, plus compression and the fast arcfour cipher, use:</p>
<blockquote><p>ssh -c arcfour -XC user@&lt;IP address&gt;</p></blockquote>
<p>Well, I hope you&#8217;ve found this useful.  If you have any questions or suggestions, please feel free to comment!</p>
<p>Next time, I&#8217;ll finish up this series with some tips on using Bash aliases to simplify the commands involved, as well as a couple other useful things you can do with SSH.  Thanks for reading!</p>
<br />Posted in Uncategorized Tagged: encryption, OpenSSH, remote desktop, SSH, Ubuntu, VirtualbBox, virtualization, VNC, X11 forwarding <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omegamormegil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omegamormegil.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omegamormegil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omegamormegil.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omegamormegil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omegamormegil.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omegamormegil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omegamormegil.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omegamormegil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omegamormegil.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omegamormegil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omegamormegil.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omegamormegil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omegamormegil.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omegamormegil.wordpress.com&amp;blog=4683273&amp;post=43&amp;subd=omegamormegil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omegamormegil.wordpress.com/2009/01/11/the-understated-usefulness-of-ssh-part-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omegamormegil</media:title>
		</media:content>
	</item>
	</channel>
</rss>
