<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Trausch’s Little Home &#187; software</title>
	<atom:link href="http://mike.trausch.us/blog/tag/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://mike.trausch.us/blog</link>
	<description>My writing on life, computers, and technology</description>
	<lastBuildDate>Wed, 09 Feb 2011 18:16:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>On FatELF, or &#8220;Because 140 characters isn&#8217;t enough for a discussion&#8221;</title>
		<link>http://mike.trausch.us/blog/2010/06/23/on-fatelf-or-because-140-characters-isnt-enough-for-a-discussion/</link>
		<comments>http://mike.trausch.us/blog/2010/06/23/on-fatelf-or-because-140-characters-isnt-enough-for-a-discussion/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 21:01:44 +0000</pubDate>
		<dc:creator>Michael Trausch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux-kernel]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[standards]]></category>

		<guid isPermaLink="false">http://mike.trausch.us/blog/?p=617</guid>
		<description><![CDATA[So, I have someone on Identi.ca (@flameeyees@identi.ca) discussing with me me about my views on FatELF. No biggie, but trying to continue the argument (pointless as it is) there is just too much work: the character limit does not permit real discussion on such a complex issue. So, permit me to address each of the [...]]]></description>
			<content:encoded><![CDATA[<p>So, I have someone on Identi.ca (<a title="&quot;flameeyes&quot; on identi.ca" href="http://identi.ca/flameeyes">@flameeyees@identi.ca</a>) discussing with me me about my views on FatELF. No biggie, but trying to continue the argument (pointless as it is) there is just too much work: the character limit does not permit real discussion on such a complex issue. So, permit me to address each of the issues raised as I understand them and rebut. Then conversation can continue, if at all desired (though seriously, I don&#8217;t know that *I* desire to do so).</p>
<p>First point: FatELF would be useless because &#8220;<a href="http://identi.ca/notice/37727809">you can do that already, write a cc frontend that compiles the same file multiple times, it&#8217;s _not_ hard, I&#8217;ve done it before</a>&#8220;. Okay, so the proposed solution here is to write a compiler driver that will interpret arguments and, from a single Makefile, build for multiple platforms. There might even be something out there for that, but simply put, if GCC supported this feature intrinsically, then <em>everyone</em> would have it and it would be done in a <em>standard</em> way. Free software works better when everyone can agree on a single standard way of doing things, and not <em>just</em> a single standard template for how it might be done. Using addons to perform this function still yields multiple binaries that have to be shipped anyway, which is decidedly not the aim.</p>
<p>Second point: &#8220;<a href="http://identi.ca/notice/37728093">how is shipping one (fat) binary &#8216;better&#8217; than shipping one auto-extracting auto-deciding archive?</a>&#8221; Making the assumption that the toolchain and kernel all support the feature as a standard thing here, the difference is simple: the kernel ELF loader would be able to decide which sections of the ELF file should actually be loaded in memory, read only those sections, and go on about its business normally—the rest of the process would not need to change in any way. No temporary copies need to be made, no images need to be extracted, nothing like that has to be done. However, the inverse is quite a different story. Let&#8217;s make the assumption that you&#8217;re using a POSIX shell script, with the archive of all of the possible binaries appended to the POSIX shell script. First, the script has to be prepended to EVERY such archive (meaning that different versions of the script could exist, and as any programmer knows, <a href="http://en.wikipedia.org/wiki/DRY">DRY</a>), and the script is not going to be trivial: it would have to have code to detect and support every single individual platform. Furthermore, it would require that the user have permission to extract the payload, make it executable, and run it. This is the same deficiency that makes gzexe impractical for everyday use; I know that at least on all the servers that I manage, /tmp is mounted read-write but with execution of scripts and binaries disabled. Finally, it would fail to properly work in the event that something needed to be setuid—that information would have to be in the payload itself, which is absolutely not portable from one system to another. It just cannot be made to work in a generic enough fashion to be reliable on all different types of platforms with different administrative decisions made in the management of those platforms, and in many cases would require an increased attack surface just to be made workable.</p>
<p>However, if FatELF (or, honestly, anything that is <em>truly</em> equivalent) were used, an administrator could copy the binary from one system (say, an x86) to another system (say, a PowerPC) that has all of the other dependencies filled for it, drop it on the filesystem, chown/chmod it once, and it would Just Work. setuid, if needed, would be honored by the kernel, and no extraction has to take place. No additional temporary disk space would be required, nor would it be necessary to incorporate any logic into the ad-hoc &#8220;loader&#8221; (if it could even be called that) to try to find a filesystem that is read-write with execution permitted for the current user, and therefore no special privileges from the user would be necessary.</p>
<p>In fact, the only way to solve the problem reliably at present would be to have something like /var/cache/adhoc-fat-binaries, and have all ad-hoc &#8220;fat binaries&#8221; be setuid 0 (or setuid to some user that has all necessary privileges to make something setuid 0 if necessary, probably only UID 0 has that privilege on most systems) so that it could (a) write to /var/cache/adhoc-fat-binaries and (b) set the setuid or setgid bits if necessary for the program to fulfill its function. And it deserves to be restated: we all know that having a single specific standard and adhering to it—even when the standard is less than ideal (and in some cases, like X11, <em>falls quite short</em> of ideal)—is far better than having 100 different and incompatible ways to do the same thing. It&#8217;s one of the things that we people in free software know pretty damn well.</p>
<p>See, I don&#8217;t see something like FatELF being used for distribution binaries, or anything that would be distributed in an operating system distribution package, except perhaps in special situations where something like biarch is natively supported on the hardware and it would be feasible to permit that sort of flexibility. Instead, I see something like my current situation: I administer several machines for small businesses, and not all of them are the same hardware platform.  They are all the same operating system and many of them have the same libraries installed.  Some of them are 64-bit and some are 32-bit.  Some are x86, some x86-64, and some are neither. But I would very much like to write a single program, say &#8220;make&#8221; and copy the file to every machine so that it just works. For the moment, if I want something like that, I have to just use something like Java, C#, or a script. Or, if I need something setuid, I do it in C and compile it for every system, shipping the source code file to the systems instead. But it would be more efficient to not have to do that. That is why I would see FatELF being a &#8220;good thing&#8221;.</p>
<p>I know that I am in the minority.</p>
<p>That brings me to point three: &#8220;<a href="http://identi.ca/notice/37728644">because in 99% of all usage, the kernel won&#8217;t _need_ it. And its cost in effort and overhead would be higher.</a>&#8221; For this next part of my post here, I am going to be looking at the Linux kernel, version 2.6.34, which I have just downloaded from kernel.org, which is 64 MB compressed (using bzip2!) and takes up 442 MB when uncompressed, before touching any file in the tree. Now, I am looking at this for x86-64 because that is the system I am running on and typed &#8220;make menuconfig&#8221;.</p>
<p>Who needs any of the following options? I am willing to bet that the following options are not needed in 99% of all (desktop, server, and embedded, combined) usage:</p>
<ol>
<li>Processor type and features/Support for extended (non-PC) x86 platforms</li>
<li>Processor type and features/Maximum number of CPUs</li>
<li>Processor type and features/Memory model</li>
<li>Processor type and features/Build a relocatable kernel</li>
<li>Executable file formats / Emulations/Kernel support for ELF binaries</li>
<li>Executable file formats / Emulations/Kernel support for MISC binaries</li>
<li>Executable file formats / Emulations/IA32 Emulation</li>
<li>Executable file formats / Emulations/IA32 Emulation/IA32 a.out support</li>
<li>Networking support/Plan 9 Resource Sharing Support (9P2000) (Experimental)</li>
<li>File systems/Second extended fs support</li>
<li>File systems/Reiserfs support</li>
<li>File systems/JFS filesystem support</li>
<li>File systems/XFS filesystem support</li>
<li>File systems/GFS2 file system support</li>
<li>File systems/OCFS2 file system support</li>
<li>File systems/Dnotify support</li>
<li>File systems/Kernel automounter support</li>
<li>File systems/Kernel automounter version 4 support (also supports v3)</li>
<li>File systems/FUSE (Filesystem in Userspace) support</li>
<li>File systems/FUSE (Filesystem in Userspace) support/Character device in Userpace support</li>
</ol>
<p>I can&#8217;t even go on. Twenty is enough; I think I have made my point. In 99%+ of all situations, these options are either <strong>always on</strong> or <strong>always off</strong>. They are rarely modified. And the kernel still supports a.out from IA32&#8242;s really old days‽ Seriously?</p>
<p>What does this tell me? It tells me that FatELF—or anything else that came along and did something like what FatELF would do—has room in the kernel. And if it were for whatever reason incompatible with current ELF (as it would very likely be) then the kernel could still support &#8220;old&#8221; ELF, without any of the extra fields or sections.</p>
<p>And actually, there is a great deal of possibility around something entirely different altogether. FatELF isn&#8217;t the most technically elegant thing I can think of to solve the problems that it solves, but I have yet to see something else seriously proposed. I can think of something even better, actually. We are all taught that operating systems are here to abstract us from hardware, so that we can write applications and not have to worry about communicating with the hardware directly because the OS handles those details for us. Well, if that is the case, then why don&#8217;t operating systems also abstract the system&#8217;s processor? Why don&#8217;t we have operating system kernels that provide a virtual instruction set? Yes, I <strong><em>am</em><span style="font-weight: normal;"> talking about essentially moving the application VM into an operating system kernel, though ideally with some supporting utilities in userspace to do things like hold persistent JIT caches and so forth. However, that&#8217;s for another post, another time.</span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mike.trausch.us/blog/2010/06/23/on-fatelf-or-because-140-characters-isnt-enough-for-a-discussion/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>On small offices and computer configurations</title>
		<link>http://mike.trausch.us/blog/2010/03/07/on-small-offices-and-computer-configurations/</link>
		<comments>http://mike.trausch.us/blog/2010/03/07/on-small-offices-and-computer-configurations/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 12:14:11 +0000</pubDate>
		<dc:creator>Michael Trausch</dc:creator>
				<category><![CDATA[Rant]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[random thoughts]]></category>
		<category><![CDATA[tips & tricks]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://mike.trausch.us/blog/?p=597</guid>
		<description><![CDATA[So for the past couple of weeks I have been doing work at a client’s place of business. This client—like many other small and medium-sized businesses—uses Windows on all of their desktop systems. They have a couple of server boxes that are running GNU/Linux servers, but they are not running GNU/Linux on the desktop at [...]]]></description>
			<content:encoded><![CDATA[<p>So for the past couple of weeks I have been doing work at a client’s place of business. This client—like many other small and medium-sized businesses—uses Windows on all of their desktop systems. They have a couple of server boxes that are running GNU/Linux servers, but they are not running GNU/Linux on the desktop at this point in time.</p>
<p>So, this is a pretty simple-sounding network, yes? It should be—it is just a handful of computer systems. However, there is a problem—a pretty large one, I think. There is very little in the way of either policy or convention on the network. Some users use their documents directory for storing their documents, others store their documents on their desktop, others somewhere differently altogether on the C drive, others on a network share in a public storage space. There are different versions of software on the various machines, more-or-less updated when someone thinks about it, I think.</p>
<p>This is a perfect scenario which shows why a business network should be centrally managed in some form. Note that I am <em>not</em> saying that each machine should be a bit-for-bit mirror image of the one next to it, though that is certainly a possibility. I think that people should be able to use their own choice of things like email client or Web browser software, because everyone is different. But when you have different client applications fulfilling a role on the individual workstations, you have to take a centralized approach to ensuring that things like the email is all backed up.</p>
<p>Furthermore, if you <em>don’t</em> take a centralized approach to backing up such data, it is <em>very</em> difficult to centralize the network storage. Think about adding a domain controller (that is Windows speak for a central server which handles authentication and authorization, as well as file and printer sharing and things like roaming profiles) to such a network. I expect that with multi-gigabyte mail files, things will be <em>very</em> slow at first—and that likely the only fix for them that is going to be viable in the long term is to centralize more infrastructure.</p>
<p>I am too tired to expand more on my thoughts on what I have learned and where it is heading, but the <em>Reader’s Digest</em> version of the point reads something like this: If you are a small to medium sized business, make sure that you have someone who is competent in both system and network administration, and <em>make sure that they are a part of your business from day one</em>. Like writing software, building up a technical infrastructure without careful thought and design is hazardous and comes with many hidden and unpredictable costs. It is best to head those things off right from the start; to delay only amplifies the cost of fixing the underlying problems and puts oneself in the position where fixing one issue can have a domino-like effect and create more new problems.</p>
<p>For my current situation, I think I am going to have to seriously re-think how this whole setup is done. What I do not yet know is how to quickly and efficiently bring things into shape. A bit of training and education may be required, and certainly the removal of a lot of unnecessarily-granted privileges on the workstations. That, too, should be something caught early-on: do not let every person in a business run with administrator privilege, unless they <em>are</em> an administrator (and even they should only run with administrator privilege when they are actually doing something that requires that privilege). If everyone is an administrator, there is little to no control on how things are done in a network, and it can get messy.</p>
<p>I have a lot more reading to do, as well.</p>
<p>Well, anyway, it is <em>way</em> past my bedtime.  Time for sleep.</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.trausch.us/blog/2010/03/07/on-small-offices-and-computer-configurations/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Can you force freedom and it still be freedom?</title>
		<link>http://mike.trausch.us/blog/2010/01/19/can-you-force-freedom-and-it-still-be-freedom/</link>
		<comments>http://mike.trausch.us/blog/2010/01/19/can-you-force-freedom-and-it-still-be-freedom/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 05:12:57 +0000</pubDate>
		<dc:creator>Michael Trausch</dc:creator>
				<category><![CDATA[FLOSS]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[GPLv3]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[wtf‽]]></category>

		<guid isPermaLink="false">http://mike.trausch.us/blog/?p=581</guid>
		<description><![CDATA[So back on this topic again today.  I am going to take a look at a few different statements here in this post, and then I&#8217;m going to go over them and explain why these statements are or are not correct.  Should you wish to verify any of my information, you&#8217;re more than welcome to [...]]]></description>
			<content:encoded><![CDATA[<p>So back on this topic again today.  I am going to take a look at a few different statements here in this post, and then I&#8217;m going to go over them and explain why these statements are or are not correct.  Should you wish to verify any of my information, you&#8217;re more than welcome to do so—just make sure you actually know what you&#8217;re talking about before you call me “wrong” on this one, or I will absolutely ignore you.  I have other—and more important—things to do than put up with <a href="http://en.wikipedia.org/wiki/Troll_(internet)">trolls</a> who cannot do basic research (of course, this means that I expect that you know how to use <a href="http://www.google.com/">Google</a> and <a href="http://en.wikipedia.org/">Wikipedia</a> and will do so before writing your responses, but hey, I could be expecting too much).</p>
<h3>“You can have <a href="http://en.wikipedia.org/wiki/Freedom_(philosophy)">freedom</a> without <a href="http://en.wikipedia.org/wiki/Choice">choice</a>.”</h3>
<p>That someone could even come up with this one is just amazing to me. Note that this is not an exact quote, but it is the summary of Friday&#8217;s topic. For example, this summary comes from the idea that <a href="http://en.wikipedia.org/wiki/Canonical_Ltd.">Canonical</a> is bad for <a href="http://ubuntuforums.org/showthread.php?t=1381221">considering making mainstream non-free software available for Ubuntu based on user preferences</a>. It does not matter who came up with it, of course, but the important thing is that it be called what it is: patently absurd. The ability to choose is a major part of what freedom—or <a href="http://en.wikipedia.org/wiki/Liberty">liberty</a>—is. If you cannot make a choice on a matter, then by definition you do not have freedom in the context of that matter. It is quite simple and self-explanatory. Canonical is seeking to <em>increase</em> freedom here, not take it away. Some people actually <em>want</em> to use <a href="http://en.wikipedia.org/wiki/Proprietary_software">non-free software</a>; others may not want to use it, but aren&#8217;t aware of alternatives. The latter group of people should have our focus with regard to education (but then we should <em>let them make the choice for themselves</em>!).</p>
<p>Note that I am not one of these people: I would rather use <a href="http://en.wikipedia.org/wiki/Free_software">free software</a> because of the liberty it gives me that I have come to expect over the years. But I am <em>not</em> going to tell someone else that they are <em>harming</em> me because they would rather use non-free software that is familiar to them. All I can do is show them that there are free alternatives that exist. I cannot—and I will not—make them use it or make them feel bad for not using it. I may not like proprietary software for a variety of reasons, but I will defend people&#8217;s right to use it just as I will defend even a <a href="http://en.wikipedia.org/wiki/Stupidity">stupid</a> person&#8217;s right to spew nonsense by way of speech or written word. In other words, “<a href="http://en.wikiquote.org/wiki/Evelyn_Beatrice_Hall">I disapprove of what you say, but I will defend to the death your right to say it</a>,” or perhaps more appropriately, “I [may] disapprove of what [software you run], but I will defend to the death your right to [run] it.” Even I use a <a href="http://en.wikipedia.org/wiki/Fglrx">package</a> or <a href="http://en.wikipedia.org/wiki/NVIDIA#Documentation_and_drivers">two</a> that is proprietary in nature (though it is looking like I will not have to do so for much longer, given the efforts to replace these packages with equivalent free software).</p>
<p>It is worth it to note that by adding non-free software to <a href="http://www.ubuntu.com">Ubuntu</a>, the free software that is already there does not change. The mere existence of non-free software within its repositories does not make Ubuntu somehow bad or evil. It would add choices that do not currently exist, and that one such as myself or yourself can certainly opt out of—I most likely would, for the most part, as I do not need to depend on non-free application software, and I only use non-free drivers if I have hardware where anything else is nonviable (and only until there are functional free software drivers). Did you know that Ubuntu has <a href="https://lists.ubuntu.com/archives/gobuntu-devel/2008-April/000651.html">an option in the installer to only install free software</a>? Can you say that for your favorite desktop <a href="http://en.wikipedia.org/wiki/Operating_system">operating system</a> distribution, whatever that might be?</p>
<p>The response to this idea, then, is that without choice, there is very little—if any, really—freedom. The thing that gives us freedom with free software is that we are able to to download the source code, to review/audit it, to change it to fit our needs or fix a problem, and to share those changes. If we cannot do those things, then it is not free software; see the <a href="http://www.gnu.org/philosophy/free-sw.html">essential freedoms</a>. But non-free software inside a distribution is not something that should not cause you great consternation even if you are among the most dedicated of freedom advocates, for if you are a true advocate of <em>freedom</em> then by definition you <em>must</em> respect a computer user&#8217;s freedom of choice. Remember that we choose to run free software because of the benefits it brings to us; we choose to improve upon free software for much the same reason. Eventually, I think that free software will <a href="http://en.wikipedia.org/wiki/History_of_free_software">once again</a> become the norm for computer software, on <a href="http://en.wiktionary.org/wiki/merit">merit</a> alone, for no other reason than the development, release, and usage of free software is a highly practical solution for many things ranging from <a href="http://en.wikipedia.org/wiki/Library_(computing)">library code</a> to <a href="http://en.wikipedia.org/wiki/Application_software">application software</a> to complete operating systems. It is worth noting that <a href="http://en.wikipedia.org/wiki/Free_content">free content</a>—which is similar in concept to free software, which itself is merely a specific application of freedom itself—also appears to making major headway towards becoming mainstream; it is doing so more quickly than free software is, but there is every reason to believe that free software will follow, for it is already.</p>
<h4>An Example</h4>
<p>Imagine that you are in a store, because you need some milk for dinner some night. You always get 1 gallon of 2%. But, the store has stopped carrying it, because more people buy whole milk and they were throwing away the 2% milk—demand was low, supply got to be too high, so they just stopped carrying it altogether. You leave the store and head to the next in the same town and you find the same thing there. You have a choice of stores to go to, and you have made the choice to go buy yourself some milk. But there is only one type of milk. You no longer have the choice to buy 2% where you are, and so effectively, your freedom to buy it has been taken away. (Of course, <a href="http://www.thriftyfun.com/tf73187289.tip.html">you can make 2% milk</a> <a href="http://answers.yahoo.com/question/index?qid=20090809170811AAT0NO3">from whole milk</a> (and <a href="http://wiki.answers.com/Q/How_much_butter_added_to_skim_milk_will_make_whole_milk">make whole from 2% even</a>, or <a href="http://www.cookingforengineers.com/article/113/Making-Butter">even butter</a>), but I suspect just as many people want to do that as want to write their own free software that they <em>demand</em> simply must exist, but doesn&#8217;t yet).</p>
<p>Now, the point here is that there is more than one freedom in play: the freedom of the store to stock (or not stock) various products, which affects your freedom as a <a href="http://en.wikipedia.org/wiki/Consumer">consumer</a> to buy the product you want. In the case of software, and choice, if the software you are running gives you all the choices you want, <em>then it fits your needs</em>. If it does <em>not</em>, then you are not going to be able to use it the way you want. Now you have two choices: you can do the work that it would take to make your desired choice possible, or you can use another system (free or proprietary) that will give you the choice that you want. Many people will choose the latter, especially if they are non-programmers. Though I&#8217;ve seen programmers also choose to use proprietary systems for something that they could themselves implement. That is their choice, of course. After all, if you really wanted 2% milk, you would have the same choice: make it yourself, or drive to the next town over which might have it available for you (assuming that there is some in stock and that the stores neighboring towns have not also decided to stop stocking 2% milk).</p>
<h4>Ubuntu One: The Reason Behind This</h4>
<p>This discussion came up because someone on <a href="http://identi.ca">identi.ca</a> made the claim that Canonical is forcing proprietary software into Ubuntu by way of the <a href="http://en.wikipedia.org/wiki/Ubuntu_One">Ubuntu One</a> client software. I cannot even begin to state just how woefully incorrect this point of view is. First off: the <em>only</em> thing added to Ubuntu is the ability to connect to Ubuntu One, and the software that was added to Ubuntu do to that is licensed under Version 3 of the <a href="http://en.wikipedia.org/wiki/GPL"><strong>GNU General Public License</strong></a>. The claim made in response to that was that Ubuntu One is only <em>partly</em> free software, because the server is somewhere else and has not been released. As we shall soon see, that claim is nonsensical—it depends on an extremely naïve view of how software actually works in order to make sense, really.</p>
<p>So, first things first: Ubuntu One, which was added to Ubuntu 9.04, is <em>not</em> proprietary software. The proof rests in the fact that it GNU GPL v3.0, and we know <em>a priori</em> that software licensed under the GPL is free software, so we do not need to go further on that point.</p>
<p>Now, because the software in question added to Ubuntu is free software, we can read it. The essential freedoms granted to us by truly free software ensure this, and the GPLv3 is indeed a truly free software license because it grants those freedoms. Because we are able to study the software and see how it communicates with the server. Once we know how to communicate with the server, we can write that up and design a server that communicates exactly the same way. From there, it is just a matter of patching the sync dæmon that is in Ubuntu to talk to an arbitrary, Ubuntu One compatible server. To determine how to do that, one need only read the <a href="http://python.org/">Python</a> source code contained in the <code>python-ubuntuone-storageprotocol</code> and <code>python-ubuntuone-client</code> packages. If you do not know Python well, you might expect to spend several days doing that, but if it bothers you so tremendously that you are going to practically start a flame war over it, you may find it worth it to do so.</p>
<p>Of course, the other side to that is this: if you really want Ubuntu One to talk to an arbitrary server that runs free software, and you want that free software to be written, you can fund the effort to write the free software. Approach a proficient developer somewhere out there on the Internet and ask them how much they&#8217;d charge to write a server for Ubuntu One. You might not be able to afford the fund the project entirely, but if you get a number from someone, you can start a coordinated effort to raise the funds. If you are lucky enough to be able to fund the whole project, then do so: it is but one way that you can help provide something back to the community. This does not apply to just an implementation of the Ubuntu One protocol, it could apply to anything that you see that is missing and needs to be created. Or you could spend time learning what you need to learn to pick up the project yourself, if you care for the project that deeply. The most important attribute that a person can have in order to get started with development is motivation—<a href="http://jameswestby.net/weblog">James Westby</a> reminded me of this a couple of years ago, something which I had forgotten.</p>
<h4>Perceptions: Another (Possible) Reason</h4>
<p>It was suggested to me that another possible reason that people would object to having non-free software inside an operating system distribution such as Ubuntu is that they are afraid that the proprietary options have higher quality, or offer superior features, or provide functionality that is not offered by any existing free software. Thus, they have this perception that by adding such non-free software into a distribution like Ubuntu, people will automatically use and prefer it over free software. This simply is not the case. Sure, some people will use iTunes if it is available on Ubuntu. Maybe many people would. I <em>might</em> even do so, if it were legally available for me to use that way <em>and</em> if it supports the purchase of <a href="http://en.wikipedia.org/wiki/Digital_rights_management">DRM</a>-free music. However, if there were a free software client for the iTunes store, I&#8217;d much prefer to use that. To my knowledge, however, there is no such thing that exists.</p>
<p>If there is not a free software alternative for a non-free component inside a distribution of software, if you are offended by that, then by all means, <em>create a free software alternative for it</em>! As mentioned above, you can start on such a project&#8217;s development, or you can look for people that would be interested in volunteering for it and coordinating them, or you can put up funds to pay developers to implement it. If you have money, this can be the easy part: find someone who is willing to accept payment for the service of implementing the free software alternative for whatever it is that someone else has funded, wrote, and released as proprietary software. It is not like free software is developed without cost (and if you think that it is, then you seriously do not understand what free software is or anything about the world of free software and have no standing to be getting mad when a company spends money writing software and does not release it as free software. You can try to write companies that write such software and ask them if they will give you any form of written specifications for the software, or an interface definition, or something along those lines. The worst thing that could happen is that you will be told “no”. And do so <em>nicely</em>, or they&#8217;ll be more inclined to tell you “bugger off” instead of simply “no”.</p>
<h3>“Allowing users to choose proprietary software is anti-freedom.”</h3>
<p>Nothing could be farther from the truth; it is the same, in fact, as the above statement that one can have freedom without choice. For example, if Ubuntu adopts iTunes and makes it so that you can “sudo aptitude install itunes” in the future, that is <em><strong>not</strong></em> a bad thing! How <em>can</em> it be—It contributes to the ability to choose, and thereby <em>contributes to the freedom of the end-user</em>. If you are a die-hard free software supporter and do not want to run non-free software on your system, then there is a very simple solution for you: <em><strong>simply don&#8217;t install it</strong></em>.  That <strong>is</strong> a valid solution to the problem. There are tools already available that can be run as a <a href="http://en.wikipedia.org/wiki/Cron">cron job</a> and report on any non-free software that you might have accidentally (or even intentionally) installed. If you are worried about additional non-free software getting into Ubuntu, then help enhance those tools. Or write a <a href="http://en.wikipedia.org/wiki/GUI">GUI</a> <a href="http://en.wikipedia.org/wiki/Front_end">front-end</a> for something like the <a href="http://en.wikipedia.org/wiki/Vrms">virtual RMS</a> program and work to get that included into Ubuntu as well, perhaps something that can run every time you login to the computer, or that runs as a persistent process that watches the package database on your distribution of choice for updates and then checks to see if newly installed software is non-free and alerts the user. Of course, it&#8217;d be most effective as an opt-in system, and not an <a href="http://en.wikipedia.org/wiki/Opt-out">opt-out</a> one where it would just be annoying.</p>
<p>There is no way, then, that freedom is actually reduced in this way when another choice becomes available. If iTunes were to be included in the repositories (and I suspect it would be, <a href="http://www.ubuntu.com/community/ubuntustory/components">like the restricted, universe and multiverse repositories</a>, a separate opt-in repository; perhaps simply “proprietary” would be fitting), this does not reduce your ability to choose to run a free software media player and manager like <a href="http://banshee-project.org/">Banshee</a>, or <a href="http://projects.gnome.org/rhythmbox/">Rhythmbox</a>, or even <a href="http://amarok.kde.org/">AmaroK</a> if you are so inclined to run that KDE stuff.</p>
<p>Once upon a time, <a href="http://en.wikipedia.org/wiki/Fear,_uncertainty_and_doubt">FUD (fear, uncertainty, and doubt)</a> was the tool of Microsoft. We (the free software world) <em>completely</em> hated it when Microsoft would put out FUD, because we would then have to fight that FUD by way of explanation and demonstration. Well, some time ago, a subgroup of the free software world decided to start using FUD themselves—it was done with <a href="http://en.wikipedia.org/wiki/Mono_(software)">Mono</a>, and it is being done now with just a <em>survey</em> asking people what sort of software they would like to see in Ubuntu. Now, those of us who are left who are advocates of liberty—both personal and societal—are stuck potentially fighting <strong><em>two</em></strong> battles. One with Microsoft&#8217;s FUD—such as the constant notion that you have to pay for software—and one with the &#8220;free software evangelists&#8221; FUD, who have even gone so far as to say that people should not use certain types of free software (the one who calls himself “The Open Sourcer” <a href="http://www.theopensourcerer.com/tag/mono/">even still today tells people to remove certain truly free software from their systems</a>). The truth is somewhere in the middle, between these two ends of the spectrum.</p>
<h3>Conclusion</h3>
<p>Back to the point at hand: to say that giving a person a choice is a constraint on that person&#8217;s freedom, that is <a href="http://en.wikipedia.org/wiki/Doublespeak">doublespeak</a>.; it is saying that “slavery is freedom,” albeit to a lesser degree than that very melodramatic extreme—it simply does not make sense. The concept just does not make sense unless the words that are used to express the concept are dramatically redefined to mean things vastly different from what standard English dictionaries define them to be. The only reason that one has to try to convince someone that additional choice is a constraint on freedom is to try to convince people of things that are not true; to install fear, uncertainty, and doubt into people. This is the sort of behavior that—no matter <em><strong>what</strong></em> community it originates from—is completely immoral, unethical, and absolutely unacceptable. It&#8217;s dishonest, and for those of you who know me personally, you know what I think of dishonesty.</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.trausch.us/blog/2010/01/19/can-you-force-freedom-and-it-still-be-freedom/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Unexpected downtime for trausch.us, mischiefinoverdrive.us.</title>
		<link>http://mike.trausch.us/blog/2009/10/26/unexpected-downtime-for-trausch-us-mischiefinoverdrive-us/</link>
		<comments>http://mike.trausch.us/blog/2009/10/26/unexpected-downtime-for-trausch-us-mischiefinoverdrive-us/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 14:17:31 +0000</pubDate>
		<dc:creator>Michael Trausch</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[site maintenance]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mike.trausch.us/blog/?p=573</guid>
		<description><![CDATA[So, this weekend was&#8230; interesting. Through something of a comedy of errors, the server suffered some strange software issues that prevented it from working this weekend.&#160; There was a bug in a recent update to the server software (running testing software)&#160;and that caused longer downtime than it should have due to various interactions between things [...]]]></description>
			<content:encoded><![CDATA[<p>So, this weekend was&#8230; interesting.</p>
<p>Through something of a comedy of errors, the server suffered some strange software issues that prevented it from working this weekend.&nbsp; There was a bug in a recent update to the server software (running testing software)&nbsp;and that caused longer downtime than it should have due to various interactions between things on the server.&nbsp; The good news is that this is mostly fixed.</p>
<p>Additionally, this downtime has taught me that there is yet still more to do in terms of getting the server able to stand back up on its own.&nbsp; I&#8217;ve simplified the server&#8217;s setup a bit, and I&nbsp;have to write some scripts and other little glue here and there to tie down some of the things I&#8217;m doing so that the server can do things like go down and come back up without issues, all by itself.&nbsp; Getting that done would be generally a good thing. &nbsp;First things first, I&nbsp;have to figure out a decently reliable way to shutdown the system without having to do something like kill the containers and not give them the chance to cleanly shut down.&nbsp; Ideally, there would be some sort of command that could be run on the system that would enable the containers to be shutdown.&nbsp; This is slightly challenging, because you cannot just chroot into the directory tree that the VMs are running in and kill processes, because things like /proc inside the container aren&#8217;t visible to tools running on the host.&nbsp; Oops.</p>
<p>So, I&nbsp;have some work left yet in terms of getting the server going the way it needs to be again.&nbsp; After that, I&#8217;ll be working on it over the next couple of weekends to try to increase its robustness, and so planned weekend downtime for *.trausch.us and www.mischiefinoverdrive.us can be expected.&nbsp; </p>
]]></content:encoded>
			<wfw:commentRss>http://mike.trausch.us/blog/2009/10/26/unexpected-downtime-for-trausch-us-mischiefinoverdrive-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When is it GNU/Linux and when is it not?</title>
		<link>http://mike.trausch.us/blog/2009/09/30/when-is-it-gnulinux-and-when-is-it-not/</link>
		<comments>http://mike.trausch.us/blog/2009/09/30/when-is-it-gnulinux-and-when-is-it-not/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 22:32:58 +0000</pubDate>
		<dc:creator>Michael Trausch</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://mike.trausch.us/blog/?p=568</guid>
		<description><![CDATA[Of the many controversies in free software, this is one that I&#160;have long found to be interesting.&#160; People seem to define things in different ways, which leads to confusion (and arguing)&#160;when one person calls a system a &#34;GNU/Linux&#34; system and the next calls it just the &#34;Linux&#34; system.&#160; Too often, I&#160;have found people saying &#34;You [...]]]></description>
			<content:encoded><![CDATA[<p>Of the many controversies in free software, this is one that I&nbsp;have long found to be interesting.&nbsp; People seem to define things in different ways, which leads to confusion (and arguing)&nbsp;when one person calls a system a &quot;GNU/Linux&quot; system and the next calls it just the &quot;Linux&quot; system.&nbsp; Too often, I&nbsp;have found people saying &quot;You must <strong><em>always</em></strong> call it GNU/Linux, Linux is nothing without GNU!&quot; and this is simply incorrect.&nbsp; So, here I&nbsp;try to spell out the issues and when something is &quot;GNU/<em>anything</em>&quot; and when it is not.</p>
<h2>Question 1: What <em>is</em> an operating system?</h2>
<p>Here is a (very partial, heavy on the Unix-like systems) list of operating systems:&nbsp; GNU, FreeBSD, OpenBSD, NetBSD, Microsoft Windows, Mac OS, XENIX, AIX, OS/2, MS-DOS, PC-DOS, FreeDOS.&nbsp; All of these are full operating systems, though some are more compartmentalized than others.&nbsp; I&nbsp;hear some saying already, &quot;But GNU&nbsp;is not an operating system!&quot;&nbsp; Incorrect.&nbsp; When using the Hurd and a GNU&nbsp;userland operating system stack, that <em>is</em> the GNU&nbsp;system.&nbsp; I&nbsp;hear others saying, &quot;But you left Linux out!&quot;&nbsp; Correct, I did: Linux <em>is not an operating system by itself</em>.&nbsp; Many people are under the impression that the kernel <em>is</em> the operating system, and this is simply incorrect.&nbsp; <strong>A kernel is the core of an operating system, but it is not <em>the</em> operating system itself.</strong></p>
<p>If the kernel is not the operating system itself, what is?&nbsp; An operating system consists of a kernel and software that is used to make that kernel useful&mdash;software that provides the user (or the programmer) with an <em>interface</em> to the kernel.&nbsp; An operating system in the modern sense comprises a kernel and software that surrounds the kernel.&nbsp; In the case of POSIX, UNIX and UNIX-like operating systems, this includes the C library, a set of utilities (kill, ps, ls, cp, mv, rm, sh, and so forth), and more.&nbsp; To compare to Windows, the Windows operating system is <em>not</em> just NTOSKRNL.EXE.&nbsp; That&#8217;s the kernel, but there are a suite of executables and libraries that surround it and provide interfaces to it which make the kernel useful.&nbsp; While it is technically possible to do, law prevents the creation of a &quot;GNU/Windows&quot; or &quot;GNU/NTOS&quot;.&nbsp; It would not be as straightforward as it is to run GNU&nbsp;on a Unix-like system, but it would be possible (Cygwin is as close as it can lawfully get).</p>
<p>So, when we talk about the FreeBSD&nbsp;operating system, we are referring both to the FreeBSD&nbsp;kernel and the utilities and software that make it useful.&nbsp; &quot;FreeBSD&quot; includes  utilities and libraries and all of that, just like the NetBSD or Windows operating systems do.&nbsp; But, Linux does not.&nbsp; When we say &quot;Linux&quot;, we are <em>necessarily</em> talking about only a kernel, the project that is the brainchild of a man named Linus Torvalds and the army of programmers around him.</p>
<h2>Question 2: What is an OS&nbsp;kernel?</h2>
<p>An operating system kernel is the core of the operating system.&nbsp; However, without the rest of the components that build an operating system, a kernel is useless.&nbsp; To make matters more interesting, a single kernel can be used as a component in several different operating systems.&nbsp; This is actually the case for many systems, though it is most prominent in the case of systems that are built around the Linux kernel because there are so many of them.</p>
<p>The lifecycle of a kernel is generally something like this:&nbsp;&nbsp;Set up and initialize itself, load and initialize basic hardware drivers, kick off one (or more) processes that are required to make the system useful, and then loop, handling things like hardware interrupts and system calls from software.&nbsp; In the case of a Unix-like system, the kernel attempts to run a program called &quot;init&quot; (usually on modern systems, this is found in /sbin/init), which initializes userland and starts running services that make the system useful. &nbsp;So a Unix-like operating system provides at least a kernel and an init process, as well as programs for logging in from TTYs (or virtual terminals), manipulating files, processes, and the kernel&#8217;s state, and so forth.&nbsp; If a Unix-like system cannot find an init program, it will halt (panic)&nbsp;or return to firmware where a user could tell the kernel to use an alternate program for init (for example, you can pass &quot;init=/bin/bash&quot; to the Linux kernel, and it will start a single program:&nbsp;bash).</p>
<h2>Question 3: Where is the line between an OS&nbsp;and the rest?</h2>
<p>To answer this question, we must look at several operating systems, and we must be able to know what the difference is between <em>core</em> software and <em>application</em> software.&nbsp; The line can be blurred, of course, especially when the core software depends on certain application software.&nbsp; So in order to more accurately tell the difference, we need to know exactly what the core system uses.&nbsp; A classic example in the UNIX&nbsp;world: some software is used as system software, and is also available for use as application software.&nbsp; A system cannot be called a Unix without some of it, and a system certainly isn&#8217;t Unix-like without it (and remember:&nbsp;Unix is an operating system definition).</p>
<p>For non-technical people, an operating system is a distribution.&nbsp; That is, Microsoft Windows is an operating system as it is installed; Ubuntu, Debian, and Red Hat Enterprise Linux are also operating systems.&nbsp; For those who are more technical, though, the line isn&#8217;t there:&nbsp; the line is somewhere between what is shipped for installation and what is the core system.</p>
<p>Let&#8217;s compare FreeBSD&nbsp;with Linux.&nbsp; A typical FreeBSD system contains the FreeBSD&nbsp;kernel, FreeBSD&#8217;s C library, FreeBSD&#8217;s kernel management utilities, an implementation of init, and implementations of the Unix utilities (ls, ps, cp, kill, etc.).</p>
<p>However, a typical Linux system contains the Linux kernel, the Linux kernel utilities, the GNU&nbsp;C Library, GNU&nbsp;coreutils, GNU findutils, GNU&nbsp;bash, filesystem-specific utiltiies, an implementation of init (could be sysvinit, Upstart, or any number of other ones), and others.</p>
<h2>Question 4:&nbsp;When is it GNU/Linux? &nbsp;When is it not? &nbsp;When is any system GNU/<em>anything</em>?</h2>
<p>The simple answer:&nbsp;most systems <em>aren&#8217;t</em> GNU/<em>anything</em>, but they <em>could</em> be.&nbsp; Take as an example the project to use the FreeBSD kernel (but not the FreeBSD&nbsp;userland).&nbsp; The system <em>cannot</em> simply be called FreeBSD&nbsp;any longer:&nbsp;a significant portion of the FreeBSD operating system is removed when its userland is replaced.&nbsp; The project&#8217;s operating system is called &quot;GNU/kFreeBSD&quot;, not &quot;GNU/FreeBSD&quot; because FreeBSD was a complete operating system before its utilities were removed and GNU&nbsp;implementations dropped in.&nbsp; This would include the GNU&nbsp;C library and the typical things you see in a Linux installation.&nbsp; This also means that it&#8217;s a different operating system entirely!&nbsp; Any piece of software that expects to be built on FreeBSD and assumes a complete FreeBSD&nbsp;system might not even build when using the FreeBSD kernel and the GNU&nbsp;userland.</p>
<p>In the case of Linux:&nbsp; When you&#8217;re using the GNU&nbsp;utilities and core system, it&#8217;s GNU/Linux.&nbsp; When you&#8217;re <em>not</em>, then it&#8217;s not.&nbsp; For example, Android is a distinct operating system from Ubuntu.&nbsp; They both use the Linux kernel, but that&#8217;s where the similarities stop.&nbsp; Android is one example of a distinctly different operating system that shares a kernel with another operating system.&nbsp; Aside from the fact that Ubuntu is most commonly run on x86 or x86-64 systems and Android is most commonly run on ARM&nbsp;systems, if you sat the two side-by-side on the same platform you&#8217;d <em>still</em> have different operating systems that do things differently.&nbsp; This is because Android doesn&#8217;t even use the same C library as Ubuntu; many pieces of software that are stated to work on a Unix-like system such as GNU/Linux or FreeBSD assume a richer environment (closer to that specified by operating system standards).&nbsp; They would have to be <em>ported</em> to Android to run on Android successfully; that&#8217;s a major red flag that says &quot;Oh, that&#8217;s a different operating system.&quot;</p>
<h2>Question 5:&nbsp;Does that mean I&nbsp;can create my own operating system?</h2>
<p><strong><em>Yes</em></strong>.&nbsp; You can.&nbsp; And you can even re-use the kernel from any other operating system that is licensed in such as way as to permit you to do so.</p>
<p>Let&#8217;s think about this in terms of OS&nbsp;X&nbsp;and what Microsoft could potentially do for Windows, as an example.&nbsp; Apple used to have its own operating system called &quot;System&quot;, which was then called &quot;MacOS&quot;, and today we call it &quot;Mac OS&nbsp;Classic&quot;.&nbsp; This system was a cooperatively multitasking operating system that ran software specially built for it.&nbsp; It was very popular, and it was also not as robust as modern operating systems.&nbsp; It was pretty interesting, though:&nbsp;it did not have a command-line interface.&nbsp; Nearly everything that was in the <em>System Folder</em> was the operating system itself, aside from installed fonts, extensions, and system enablers (though often extensions and enablers would patch the operating system in memory, or hook into it in some way so as to attach itself to it).&nbsp; Apple abandoned that system years ago for OS&nbsp;X. &nbsp;They took a BSD&nbsp;kernel and wrote a stack around it, reusing some components but using a very different architecture to put things together.&nbsp; The kernel for OS&nbsp;X&nbsp;is called Darwin, and it&#8217;s a very important&mdash;in fact, the central&mdash;piece of the OS&nbsp;X operating system stack.&nbsp; But it is not OS&nbsp;X; it is but a component.</p>
<p>How could Microsoft do something like this?&nbsp;&nbsp;Let&#8217;s say that Microsoft went and did something similar, taking the BSD kernel and porting Windows&#8217; software stack to run around it.&nbsp; They also call it Windows.&nbsp; Let&#8217;s say that they modified the kernel to load Microsoft&#8217;s old drivers and that they had incorporated a PE&nbsp;loader and ported their software to this new operating system (but retained API and binary compatibility with their legacy operating system that used a very different composition of kernel and userland, by necessity).&nbsp; Would this mean that they were running FreeBSD?&nbsp;&nbsp;No.&nbsp; It <em>would</em> mean that their operating system were based on (at the very least)&nbsp;the FreeBSD&nbsp;kernel.&nbsp; Though they could keep the FreeBSD stack and package it as a set of extensions to their new operating system, and claim the ability to run FreeBSD&nbsp;(and in a limited fashion, some Linux, if they retain the Linux compatibility mode of the FreeBSD&nbsp;kernel and system)&nbsp;software.&nbsp; Now that would be an interesting market position for Microsoft to be in, wouldn&#8217;t it?&nbsp; Microsoft could even make their new system compliant in some way with POSIX&nbsp;and the SUS and get branded as a UNIX&reg; system.&nbsp; But the new system would be more like Windows than it would be FreeBSD if they didn&#8217;t keep FreeBSD&nbsp;as-it-were, since they&#8217;d likely replace the core stack to fit their desires and needs, like Apple did.</p>
<h2>Conclusion</h2>
<p>I hope that this has clarified things a bit.&nbsp; However, if it has not, a good place to start reading is the Wikipedia articles for <a href="http://en.wikipedia.org/wiki/Operating_system">&quot;operating system&quot;</a> and <a href="http://en.wikipedia.org/wiki/Kernel_%28computer_science%29">&quot;Kernel (computer science)&quot;</a>.&nbsp; They are a long articles, but they make for a great starting point for research and clarification of just what an operating system is.&nbsp; Both articles look at different operating systems (and their kernels).&nbsp; As to whether or not you can determine what an operating system is, you will want to become intimately familiar with <em>many</em> different operating systems (and types of operating systems; there are families of them as people create more and more systems both original and reimplementations of others) before you start trying to figure it out.&nbsp; Look at native code and managed code operating systems&mdash;also realize that the distinction of what is the operating system can sometimes be relatively hard to determine accurately.</p>
<p>If you want to see what a bare operating system looks like, though, check out one of these operating systems&#8217; source code:&nbsp;&nbsp;FreeBSD, NetBSD, OpenBSD.&nbsp; Each of them in their version control systems has the <em>complete operating system</em>, which is much more than just a kernel. &nbsp;You can then, should you want, figure out exactly what packages on a typical GNU/Linux system take the place of the remainder of the operating system.&nbsp; It&#8217;d be an interesting exercise in learning&mdash;if learning is truly what you&#8217;re after, and not just argument.</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.trausch.us/blog/2009/09/30/when-is-it-gnulinux-and-when-is-it-not/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>And the Douchebag Award goes to&#8230;</title>
		<link>http://mike.trausch.us/blog/2009/09/24/and-the-douchebag-award-goes-to/</link>
		<comments>http://mike.trausch.us/blog/2009/09/24/and-the-douchebag-award-goes-to/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 21:27:02 +0000</pubDate>
		<dc:creator>Michael Trausch</dc:creator>
				<category><![CDATA[FLOSS]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[wtf‽]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[FUD]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://mike.trausch.us/blog/?p=566</guid>
		<description><![CDATA[Richard Stallman. That&#8217;s right.&#160; Now, there are many things that the man has done that have been effective, and the man has worked hard to ensure that we have freedom in the vast world of software.&#160; But recently, he has stated that Miguel de Icaza &#8220;is basically a traitor to the free software community,&#8221; and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Richard Stallman</strong>.</p>
<p>That&#8217;s right.&nbsp; Now, there are many things that the man has done that have been effective, and the man has worked hard to ensure that we have freedom in the vast world of software.&nbsp; But recently, he has stated that Miguel de Icaza &ldquo;is basically a traitor to the free software community,&rdquo; and no matter <em>how</em> much good a person has done, I&nbsp;cannot stand by such a fallacious statement.</p>
<p>What is freedom, people?&nbsp; The two cornerstones of freedom are <em>education</em> and <em>choice</em>.&nbsp; A person who is uneducated cannot choose, and so one depends on the other.&nbsp; Some people will choose to use either free software or proprietary software exclusively, and others will mix the two together, with varying priorities that they place on their choices.&nbsp; As long as people are aware of what&#8217;s out there and can determine what is best for the way they use their own systems, <em>freedom is available</em>.&nbsp; Yes, that means some people may choose to run Windows.&nbsp; Many will not, and if one makes a conscious choice, that is for them to do for themselves.&nbsp; My concern is that people need to know about the choices in order to make a choice to begin with.</p>
<p>Now, de Icaza has done a <strong><em><u>great deal of work for the open source community</u></em></strong>.&nbsp; He&#8217;s one of the key people who has been behind Midnight Commander and GNOME.&nbsp; And of course, Mono.&nbsp; He has given us a great deal of good quality, free software that many people can choose to use, and he has given the ability to use a VM-based runtime environment that previously was not cross-platform, as well, on nearly any platform that can be chosen.&nbsp; The GNU&nbsp;people are even working on a similar one.&nbsp; But this is not the reason that de Icaza is supposedly a traitor to the community.&nbsp; The reason?&nbsp;&nbsp;de Icaza is helping Microsoft out with their new &ldquo;Open Source Labs&rdquo;.</p>
<p>Guess what, Mr. Stallman?&nbsp;&nbsp;The fact that Microsoft is starting to enter the world of free software <em>cannot</em> be considered to be a bad thing.&nbsp; You did a great deal of work to ensure that free software that is adequately licensed can stay that way, and the turn the copyright system around on those who have sought out to corrupt it.&nbsp; You have put free software on the radar around the world.&nbsp; You have done a great many things that others would not have the heart, nor the motivation, to carry out.&nbsp; It would appear, however, your time is up:&nbsp; the world can and will move on without you, and I declare that it is time for you to go away.&nbsp; When you start attacking people in the very world that you helped to create, you become obsolete and no longer serve your purpose.&nbsp; I&nbsp;dub St. Ignucius of the Church of Emacs to be a heathen who has forgotten his message, forgotten his values, and is now a harmful creature; hardly a saint, more like a devil.&nbsp; Overtaken with fits of arrogance.&nbsp; Lately, you have caused a great deal of infighting within the community.&nbsp; As I&nbsp;am sure you are well aware, infighting serves very little useful purpose but to tear apart communities.&nbsp; And now you make a bold, arrogant, and false statement that serves only that purpose, but to an extent the likes of which we have never seen from you.</p>
<p>I&nbsp;say that we shun him&mdash;and his kind. Things are starting&mdash;albeit slowly&mdash;to come around to the way we want them, and he would prefer to attack it.&nbsp; Why?&nbsp;&nbsp;What logical reason is there to do so?&nbsp;&nbsp;Because he&#8217;s not the controller of it?&nbsp; Because it grew to be something that even companies that he helped cultivate an irrational, religious-like hatred of, are beginning to see is useful (not only to them, but to all of us)?&nbsp; What is his new goal, that all software should be GPL&#8217;d and if it isn&#8217;t it is evil?&nbsp; We should not tolerate these sorts of counterproductive behaviors.&nbsp; Stallman has reduced himself to a Schestowitz, a creature who deserves no respect.&nbsp; A troll.&nbsp; I&nbsp;suppose in his old age, he has decided that attention is more important than our freedoms.</p>
<p>Richard Matthew Stallman, you are no longer relevant to our community, our world, the world of people who truly believe in and advocate for freedom, that of choice and that of the rights to study, improve, and distribute software.&nbsp; Thank you for your services, for they were needed to get us where we are today.&nbsp; However, you have chosen to do us no further good, only ill.&nbsp; And for that, I say damn you.&nbsp; Leave the Free Software Foundation and permit it to continue to work for freedom, or take it down and let the GNU&nbsp;project carry on to produce software without all of the utter crap that you have begun to spew of late. &nbsp;I&nbsp;have no problem with the GNU&nbsp;project.&nbsp; I&nbsp;love the GNU&nbsp;project.&nbsp; And I&nbsp;am grateful for the work that you, independently and through the Free&nbsp;Software Foundation, have done so that we can enjoy the freedom to choose a free software system to do our work and our play.&nbsp; But you are no longer helping; you have become a bully, an old troll.&nbsp; You do not help free software any more.&nbsp; Your recent action is a great offense to free software, and very much condemning a road which will lead to more free software.&nbsp; Go away, troll.</p>
<p>Long live freedom&mdash;true freedom&mdash;and free software.&nbsp; And thank you, Miguel de Icaza, for all of the great software that you have given us, as well, for your continued work to make software more useful and portable.&nbsp; May you never wind up irrelevant and petty as Stallman has wound up being.</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.trausch.us/blog/2009/09/24/and-the-douchebag-award-goes-to/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>On communicating with software authors</title>
		<link>http://mike.trausch.us/blog/2009/09/09/on-communicating-with-software-authors/</link>
		<comments>http://mike.trausch.us/blog/2009/09/09/on-communicating-with-software-authors/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 02:09:11 +0000</pubDate>
		<dc:creator>Michael Trausch</dc:creator>
				<category><![CDATA[AllTray]]></category>
		<category><![CDATA[FLOSS]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[random thoughts]]></category>
		<category><![CDATA[tips & tricks]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://mike.trausch.us/blog/?p=559</guid>
		<description><![CDATA[AllTray is a rather small project&#8212;for the moment, there is a single developer working on it (myself), and there aren&#8217;t a terribly great number of users, though the users that it does have are most excellent.&#160; For a long time, the users didn&#8217;t have the ability to observe the development processes for AllTray, nor did [...]]]></description>
			<content:encoded><![CDATA[<p>AllTray is a rather small project&mdash;for the moment, there is a single developer working on it (myself), and there aren&#8217;t a terribly great number of users, though the users that it does have are most excellent.&nbsp; For a long time, the users didn&#8217;t have the ability to observe the development processes for AllTray, nor did they have a bug tracker or any point of contact to the author/maintainer other than email.&nbsp; Things have gotten better there, since AllTray development takes place in the open on Launchpad (though I&nbsp;do have to get better about publishing feature branches that last longer than a day or two so that people can see them as well while they are in progress).</p>
<p>Many projects that are all about being open and transparent provide mechanisms for their users to get in touch with the developers.&nbsp; Launchpad has become an excellent place to do these things; Launchpad&#8217;s Answers and Bugs components are <em>truly excellent</em> ways to get in touch with people that manage software there.&nbsp; The system is so good that I&#8217;d advocate that every project try to move to it.&nbsp; Launchpad <em>does</em> have its issues, though they are often quickly fixed (and can be fixed even quicker now that it is free software).&nbsp; But between Bazaar (a truly amazing and flexible distributed version control system) for code hosting and the other components of Launchpad such as the Answers, Bugs, and Translations components, Launchpad provides virtually everything that a project needs to communicate effectively with its users aside from the project&#8217;s Web site.&nbsp; And users seem to naturally be able to reach out using it.</p>
<p>In the nearly one year that I&#8217;ve been working with AllTray, I&#8217;ve talked&mdash;well, written to&mdash;several people who have asked questions and acted in their own ways to work to improve the software.&nbsp; Development on AllTray has been made much easier just because people are willing to speak up.&nbsp; Everything from the random &ldquo;thank you&rdquo; to &ldquo;hey, are you going to do this?&rdquo; or &ldquo;I&#8217;d like to see feature <em>x</em> in the new version&rdquo; or whatever.&nbsp; It&#8217;s truly great.&nbsp; I can&#8217;t say that every project has users quite like AllTray&#8217;s, because AllTray is something of a niche application, but AllTray&#8217;s users are a great model for other projects.&nbsp; There has been virtually no negativity from users and everything has been constructive.</p>
<p>To anyone who manages a project that <em>doesn&#8217;t</em> use Launchpad, I&#8217;d <strong>strongly</strong> encourage them to do so.&nbsp; Its users are great, and as far as management of the overall project goes, it&#8217;s <em>very</em> easy for project people to communicate back and manage communications in a single spot.&nbsp; It&#8217;s also great that users can ask a question and that the project can do things like go, &ldquo;oh, hey, this is really a bug,&rdquo; or vice versa with bugs&rarr;questions.&nbsp; And if you don&#8217;t use Launchpad because you don&#8217;t want to use Bazaar&nbsp;(I&nbsp;hear that users of git are pretty dedicated to it; I&nbsp;can understand that, but it&#8217;s just not for me&mdash;it&#8217;s too complex, and I&nbsp;like that Bazaar just stays out of my way), consider using LP&nbsp;for everything <em>but</em> code hosting.&nbsp; Or consider using Launchpad&#8217;s code hosting to mirror your project from git, it does this quite nicely.&nbsp; Or, find some way to do what Launchpad does wherever you do project management.&nbsp; It works really well, and it&#8217;s a big help.</p>
<p>And to AllTray&#8217;s users. A big <span style="font-size: x-large;">Thank You</span>.&nbsp; You guys and gals are great.&nbsp; Keep communicating!</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.trausch.us/blog/2009/09/09/on-communicating-with-software-authors/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>m4: An underappreciated tool</title>
		<link>http://mike.trausch.us/blog/2009/09/08/m4-an-underappreciated-tool/</link>
		<comments>http://mike.trausch.us/blog/2009/09/08/m4-an-underappreciated-tool/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 13:05:19 +0000</pubDate>
		<dc:creator>Michael Trausch</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[cool stuff]]></category>
		<category><![CDATA[tips & tricks]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[m4]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://mike.trausch.us/blog/?p=556</guid>
		<description><![CDATA[In 40+ years of computing, there is bound to be software and tools that people are simply not aware of, or have forgotten about, or have moved from the forefront to behind the scenes&#8212;there are actually lots of these.&#160; One of the reasons that I&#160;watch Freshmeat for software releases is to constantly look for things [...]]]></description>
			<content:encoded><![CDATA[<p>In 40+ years of computing, there is <strong>bound</strong> to be software and tools that people are simply not aware of, or have forgotten about, or have moved from the forefront to behind the scenes&mdash;there are actually <em>lots</em> of these.&nbsp; One of the reasons that I&nbsp;watch <a href="http://freshmeat.net/">Freshmeat</a> for software releases is to constantly look for things that I&nbsp;might be able to use or are just plain nifty.&nbsp; After all, there is a <em>lot</em> of software out there.</p>
<p>One piece of software that is almost ubiquitous (at least, outside of the not-so-wonderful world of Microsoft Windows) is a small program known as <a href="http://en.wikipedia.org/wiki/M4_%28computer_language%29"><tt>m4</tt></a>.&nbsp; You may or may not have heard of it, and you have probably never used it outside of the <a href="http://en.wikipedia.org/wiki/GNU_build_system">GNU&nbsp;build system</a> if you&#8217;ve used that at all.&nbsp; <tt>m4</tt> is fantastic, if hard to learn, but it is available and it is a pretty much standard component of most UNIX-like systems.&nbsp; It is a <a href="http://en.wikipedia.org/wiki/Macro_%28computer_science%29">macro</a> processor that dates back to V7 UNIX&nbsp;and it&#8217;s been standardized as part of the POSIX&nbsp;body of standards, and <a href="http://www.gnu.org/software/m4/">GNU&nbsp;has its own version with extensions</a>.</p>
<p>Essentially, what you do with <tt>m4</tt> is create macros that process text, and then you can use those macros to simplify things.&nbsp; In other words, <tt>m4</tt> makes it possible to follow the <a href="http://en.wikipedia.org/wiki/Don%27t_Repeat_Yourself">DRY&nbsp;principle</a> when it comes to writing text documents, configuration files, and other text-based files.&nbsp; For example, I&#8217;ve written some macros to make it easier to work with <a href="http://en.wikipedia.org/wiki/Djbdns">djbdns</a> configuration files, which are available on my <a href="http://mike.trausch.us/software">software page</a>.&nbsp; Instead of writing a line that looks like this:</p>
<p><samp>+alltray.trausch.us:173.15.213.185:600</samp></p>
<p>I can write a line that looks like this:</p>
<p><samp>DD_A_FULL(alltray, 173.15.213.185)</samp></p>
<p>Or, for multiple hosts that share the same address,&nbsp;I&nbsp;can (actually, I&nbsp;do; this is from my configuration file) do this:</p>
<p><samp>DD_A_IP(173.15.213.185)<br />
DD_A(allspice)<br />
DD_A(alltray)<br />
DD_A(mike)<br />
DD_A(morganne)<br />
DD_A(phone)<br />
DD_A(projects)<br />
DD_A(sip)<br />
DD_A(vcs)<br />
DD_A(www)<br />
DD_A(gallery)<br />
DD_A(wiki)<br />
DD_AAAA_IP(2001:470:1f11:3f::1)<br />
DD_AAAA(allspice)<br />
DD_AAAA(alltray)<br />
DD_AAAA(mike)<br />
DD_AAAA(morganne)<br />
DD_AAAA(phone)<br />
DD_AAAA(projects)<br />
DD_AAAA(sip)<br />
DD_AAAA(vcs)<br />
DD_AAAA(www)<br />
DD_AAAA(gallery)<br />
DD_AAAA(wiki)<br />
DD_AAAA(spicerack)</samp></p>
<p>The nifty part is that the AAAA&nbsp;lines actually expand to:</p>
<p><samp>:allspice.trausch.us:28:\040\001\004\160\037\021\000\077\000\000\000\000\000\000\000\001:600</samp></p>
<p>Which, as you can imagine, is quite a pain to manage manually.&nbsp; However, using <tt>m4</tt> and some helper programs that are written in C&nbsp;for formatting IPv6 addresses for AAAA&nbsp;records and formatting SRV records for things like XMPP&nbsp;services, managing my configuration has become so easy that I&nbsp;don&#8217;t really have to think very hard to do it.&nbsp; I don&#8217;t have to seek out any online generators for SPF&nbsp;records, AAAA&nbsp;records, or SRV records. &nbsp;I&nbsp;don&#8217;t have to worry about repeating a TTL&nbsp;in every line, either, because I set up a domain like so:</p>
<p><samp>DD_DOMAIN(trausch.us)<br />
DD_TTL(600)<br />
DD_SOA(spicerack,mbt.zest.trausch.us,1800,600,21600,600)<br />
DD_NS(173.15.213.185,spicerack)<br />
DD_NS(,primary.staffasap.com)<br />
DD_PTR(173.15.213.185,spicerack)</samp></p>
<p>And for a section that should have a longer TTL, I&nbsp;do so by saying <samp>DD_TTL(<em>longer_ttl</em>)</samp> and then writing the new lines.&nbsp; I didn&#8217;t try to turn the configuration file format into something that was BIND-like (after all, part of the reason I&nbsp;left BIND&nbsp;was I&nbsp;hated managing its configuration files)&nbsp;but I&nbsp;<strong>did</strong> make the configuration easier for me to manage.&nbsp; Now, when I&nbsp;need a new address in the file, or change anything about my domain, it&#8217;s as simple as adding or deleting macro calls, and the rest is handled for me.&nbsp; (I also modified my Makefile that generates the djbdns &quot;data.cdb&quot;&nbsp;file so that <tt>m4</tt> is called automatically when I&nbsp;update the data.m4 file.)</p>
<p><tt>M4</tt> <em>can</em> be a major pain to use until you learn it.&nbsp; And while I&nbsp;do sometimes run into the occasional pitfall with it, I&#8217;ve used it for adding preprocessing capability to C#&nbsp;and Vala code to make my life easier, and I&#8217;ve used it for various other things in the past outside of the GNU&nbsp;build system.&nbsp; I&nbsp;absolutely <em>love</em> it.&nbsp; It is not for everyone&mdash;indeed, not everyone has a use for a macro processor&mdash;but if ever the need arises, it is well worth your time to learn <tt>m4</tt> and use it any time you need a macro processor.&nbsp; It sure beats having to learn macro processors that are specific to a particular environment, and thanks to Cygwin, you can use GNU&nbsp;<tt>m4</tt> on Windows, too, if you happen to be so unlucky as to have to live life with 20% of your CPU&nbsp;cycles (and who knows how much RAM) paid as a tax to fend off viruses and malware.&nbsp; <img src='http://mike.trausch.us/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>And no, <tt>m4</tt> isn&#8217;t just for programming, nor is it just for programmers.&nbsp; Anyone who works with a great deal of text is likely to have a good use case for it.&nbsp; People have been known to avoid using things like PHP&nbsp;and alleviate server-side stress by using a set of macros and generating all of their pages statically (without having to statically manage them all).&nbsp; This can be good if you have to work with a server that is extremely light on resources and shouldn&#8217;t be running things like server-side scripting languages and fetching data from databases.&nbsp; Instead, you can do all of the database lookups and page formulations ahead of time, meaning that the so-called &quot;slashdot effect&quot; doesn&#8217;t ever cause you any trouble on nearly any type of server since it is only serving static pages.&nbsp; Or writing documents that require things like legal boilerplate and the like; though the days of text processing and typesetting for the masses have generally gone away, sadly.&nbsp; There are a potentially unlimited number of applications that <tt>m4</tt> could be used for&mdash;and while <tt>m4</tt> is somewhat difficult to learn and can be frustrating at times, it&#8217;s <em>standard</em> and it has <em>decades</em> of history, like UNIX&nbsp;in general.</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.trausch.us/blog/2009/09/08/m4-an-underappreciated-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Mono war is over and we have won, thanks to Microsoft.</title>
		<link>http://mike.trausch.us/blog/2009/07/06/the-mono-war-is-over-and-we-have-won-thanks-to-microsoft/</link>
		<comments>http://mike.trausch.us/blog/2009/07/06/the-mono-war-is-over-and-we-have-won-thanks-to-microsoft/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 23:18:58 +0000</pubDate>
		<dc:creator>Michael Trausch</dc:creator>
				<category><![CDATA[FLOSS]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[cool stuff]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[wtf‽]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[FUD]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[mono]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://mike.trausch.us/blog/?p=543</guid>
		<description><![CDATA[Yeah, alright.  Those are words I would never have thought I&#8217;d see in a title in a blog post, “thanks to Microsoft.”  But, it is true.  Microsoft is adding C# and the CLI to the list of technologies that it promises it will not sue for.  This is Microsoft&#8217;s “Community Promise”, which means that to [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah, alright.  Those are words I would never have thought I&#8217;d see in a title in a blog post, “thanks to Microsoft.”  But, it is true.  <a href="http://port25.technet.com/archive/2009/07/06/the-ecma-c-and-cli-standards.aspx">Microsoft is adding C# and the CLI to the list of technologies that it promises it will not sue for</a>.  This is Microsoft&#8217;s “Community Promise”, which means that to all of you who claimed that patents were a problem for Mono, if you were not wrong before, you are <em>absolutely, categorically, totally, utterly</em> wrong now.</p>
<p>One of the very few times I have uttered this phrase, but it works now:  <strong>Thanks, Microsoft</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.trausch.us/blog/2009/07/06/the-mono-war-is-over-and-we-have-won-thanks-to-microsoft/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The “Mono war” is getting very dirty and out of hand. It must stop.</title>
		<link>http://mike.trausch.us/blog/2009/06/21/the-%e2%80%9cmono-war%e2%80%9d-is-getting-very-dirty-and-out-of-hand-it-must-stop/</link>
		<comments>http://mike.trausch.us/blog/2009/06/21/the-%e2%80%9cmono-war%e2%80%9d-is-getting-very-dirty-and-out-of-hand-it-must-stop/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 03:31:05 +0000</pubDate>
		<dc:creator>Michael Trausch</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[wtf‽]]></category>
		<category><![CDATA[banshee]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[FUD]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mono]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[standards]]></category>

		<guid isPermaLink="false">http://mike.trausch.us/blog/?p=538</guid>
		<description><![CDATA[Since 1996, when I was introduced to the concept of free software and the GNU/Linux operating system (in the form of Slackware), I started to take a look around and found myself amazed at what was the free software community then. Watching it build massively amazing pieces of software that are second to none in [...]]]></description>
			<content:encoded><![CDATA[<p>Since 1996, when I was introduced to the concept of <a href="http://www.gnu.org/philosophy/free-sw.html">free software</a> and the GNU/Linux operating system (in the form of <a href="http://www.slackware.org/">Slackware</a>), I started to take a look around and found myself amazed at what was the free software community then. Watching it build massively amazing pieces of software that are second to none in some cases, and utter crap in other cases. It makes no difference, however; the world of free software is amazing. It provides an absolutely amazing, wide range of choices that one simply does not have in the world of proprietary software, and it is my <em>personal</em> hope that it remains that way.</p>
<p>Of late, however, I am extremely disappointed in our community. Maybe it is because many people have started to come into it who do not always think critically nor pride themselves on the accuracy of their perceptions. This may sound arrogant, but it certainly is not written to be. There are many people in the world who do not seem to care to spend any significant amount of time thinking about problems anymore, and they are becoming more and more, everywhere you go. I am not disappointed that we have more “mainstream” types in the community, though. I am just disappointed that the process of critical thinking seems to be disappearing from the mainstream, where truth is whoever has the loudest and most pervasive advertising and marketing.</p>
<p>In my own personal experience, it simply is: many people make the very strong assumption that they are correct on their stand of a position without completely analyzing their own position; sometimes the position of a person is taken on faith that their friend(s) are correct in their assertions, or on faith that the past must be an accurate prediction of the future, or on faith that the marketing messages they see/hear/read daily are correct. When did we start to think in these terms? When did we stop contemplating things and arriving at a decision based on that independent contemplation? Why?</p>
<p>As with any polarizing issue, there is an entire <em>spectrum</em> of people. At either end of the spectrum, you have people who are <a href="http://en.wikipedia.org/wiki/Extremist">extremists</a>, or “die-hards”. The ends of the spectrum are often emotionally-charged groups of people who feel that their position is correct despite everything. At either end, regardless of the position being stood for or against, the typical belief is that the other side is inherently evil, inherently incorrect, or inherently otherwise undesirable.  As one approaches the middle of the spectrum, what is seen is people who are more willing to consider the issues of both sides. By nature, these people are more prone to considering the situation in as much depth as is possible—perhaps discovering that their position was based on a flawed assumption or axiom—and (possibly) changing their mind. This is what consists of an open mind: not necessarily actually changing one’s mind blindly, but considering the facts of a situation and assessing their position based on the facts and merits of the arguments as they understand them.</p>
<p>An open mind is one that is willing to see the facts in the first place, not one that reacts with highly-charged word-slinging. Some days, <strong><em>I</em></strong> very nearly want nothing to do with the community, because of this highly-charged slinging going on. It is like we have become small children again, but not in a good way; not full of youth, vigor, excitement, curiosity. More in the sense that we are prone to pointless and emotionally-charged bickering and the use of strong <a href="http://en.wikipedia.org/wiki/Dysphemism">dysphemisms</a> when talking about Mono (such as <a href="http://www.linuxtoday.com/infrastructure/2009061001335OPCYUB">Mono “infecting” things</a> as if it were a <a href="http://en.wikipedia.org/wiki/Self-replicating">self-replicating</a> <a href="http://en.wikipedia.org/wiki/Computer_virus">computer virus</a> for any operating system that has runtime support for viruses installed by default), which just makes the community look like a bunch of uneducated 12-year old angry boys.</p>
<p>So, what is a fact? This is far too much to get into here, but it is probably sufficient for our needs to define a fact as “a statement which is as objective as can be, which is typically verifiable.” For example, it is a fact that Microsoft is a <a href="http://en.wikipedia.org/wiki/Corporation">corporation</a>, and it is a fact that I, Michael B. Trausch, am a <a href="http://en.wikipedia.org/wiki/Natural_person">natural person</a>.  If we cannot agree on this so far, it is best that you leave now, and spare both of us a bit of wasted time.</p>
<h2>Patents</h2>
<p>Now, as I understand it, the general position of the anti-Mono crowd is based on several vague arguments. Most of these arguments center around the issue of <a href="http://en.wikipedia.org/wiki/Patent">patents</a>. The claim is along the lines of “Mono is subject to patents by Microsoft, and therefore must be bad.” Now, first, this statement makes the implicit assumption that the Linux kernel is not potentially the subject of patents (but, it is, and <a href="http://money.cnn.com/magazines/fortune/fortune_archive/2007/05/28/100033867/">by Microsoft</a>). Note that this threat is vague, and because of that, it <em>cannot be worked around</em>. Though, the community has proved time and time again that it can and will react to real patent threats efficiently.</p>
<p>In the context of Mono specifically, there was a <a href="http://appft1.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&amp;Sect2=HITOFF&amp;d=PG01&amp;p=1&amp;u=/netahtml/PTO/srchnum.html&amp;r=1&amp;f=G&amp;l=50&amp;s1=%2720030028685%27.PGNR.&amp;OS=DN/20030028685&amp;RS=DN/20030028685">patent application</a> to cover .NET, which <a href="http://lwn.net/Articles/168248/">was rejected in part due to prior art</a>. I have yet to find a granted patent—let alone an enforceable granted patent—that covers any aspect of the ECMA or ISO specifications that Mono seeks to implement, nor the Microsoft extensions to the BCL; it took me a long time to find the patent application, truth be told. Now, should I find one that may apply, I would take the time to check and send something off in the form of a bug report or a private communication to let someone know of the issue. That is <em>precisely</em> how free software can get around patents, in fact: volunteers such as you and I can help defend free software from patents by finding patents and pointing them out to the developers of projects we like and use. Then, those developers can make a choice: either remove the infringing code completely, modify the code to no longer be infringing but retain its functionality, or ignore it altogether. Free software projects can be <a href="http://en.wikipedia.org/wiki/Fork_(software_development)">forked</a> and so if the developers take an action that others disagree with or simply do not like, one could fork the project and apply their own choice instead (presumably remove or modify the code as opposed to ignoring the potential patent problems).</p>
<p>The nifty thing about patents is that in general, a <a href="http://en.wikipedia.org/wiki/Software_patent">software patent</a> can be worked around if what is patented is known. If Microsoft has one way of doing something and patents it, and someone else comes up with a different way of doing the same thing, the latter cannot be affected by the patent granted to the former. A patent covers a process, not a result. This means that if Microsoft (or someone with enough time) were to identify the patents that the Linux kernel potentially infringes, the Linux kernel hackers would then have enough information to work around the patent. The same goes for <em>any</em> <a href="http://en.wikipedia.org/wiki/Free_software">free software</a> system, including the Mono runtime and associated development tools which are licensed under the <a href="http://en.wikipedia.org/wiki/Mono_(software)">GPL and MIT licenses</a>.</p>
<p>Given the nature of software patents and what they represent, for any country, state, city, or locale which holds software patents to be valid, it is accurate to say that <em>any software, both free and proprietary, are subject to unintentional infringement of somebody else&#8217;s patent</em>. There is no way around this except to rally together to change the laws in your region. There is no easy out of that. For more information on that, head on over to the <a href="http://endsoftpatents.org/">End Software Patents</a> Web site.</p>
<p>In some regions, such as here in the United States, patents on software are either in extreme danger or disarmed completely. Currently in the United States there are several tests which a patent application must pass before being granted. A patent cannot be granted for a process that <a href="http://www.groklaw.net/pdf/07-1130.pdf">“claims ‘laws of nature, natural phenomena, [or] abstract ideas’”</a>. Also, <a href="http://www.groklaw.net/pdf/07-1130.pdf">“a mathematical algorithm alone is unpatentable because mathematical relationships are akin to a law of nature”</a>. Addtionally, a patent must be for something non-obvious and is not prior art. The Supreme Court <a href="http://www.scotusblog.com/wp/major-new-case-on-patent-rights/">is taking the case</a>. Personally, I am awaiting that decision eagerly, as it is a chance for the Supreme Court to clarify its previous rulings and reinforce the “machine-or-transformation” test, which would spell the end for many different types of software patents, particularly those purely on software itself. Here is hoping.</p>
<h3>Patents and the Agility of Free Software</h3>
<p>Free software has long been something that has been attacked in one way or another by one movement or another. Early on, you paid a great deal for the hardware, and wrote most of the software yourself. People traded software, and somewhere along the way, there was rise to proprietary software. Not strangely, Microsoft’s rise was in this era. I am sure that some of you cannot even imagine this—and others of us have forgotten this—but there was once a time when there was a great majority of proprietary-only software available for common computers. Linux was only started in 1991 for the 32-bit x86, and BSD was (as far as I am aware) never ported to the pre-32-bit x86 systems. Most of those ran Microsoft’s DOS. There was “freeware” around, but that was really still proprietary software in many ways. You could get free software from bulletin board systems with source code and be permitted to modify and redistribute it if you looked around hard enough.</p>
<p>It amazed me to see the sheer amount of free software that was available when <a href="http://www.joethielen.com/">someone</a> handed me a set of operating system CDs—for free—and said “check this out.” I had heard of <a href="http://en.wikipedia.org/wiki/UNIX">UNIX</a> before then, but nearly always in this capacity like it was far too costly to ever acquire or run at home. The machine I was running on at the time had DOS and Windows 3.1 on it, and I would get software either via bulletin boards (rarely) or more frequently going to the store. I never was able to modify my system, or fix anything that was wrong with it in software. Suddenly, though, there was this system that I could install that <em>came with source code</em>, and I could modify it in any way I pleased. I was like a kid in a candy store.</p>
<p>The <a href="http://www.gnu.org/">GNU project</a>, which has sought to implement a <a href="http://en.wikipedia.org/wiki/Unix-like">UNIX-like</a> system, and the Linux kernel, make a hell of an operating system. There is, today, a very large amount of software that is <a href="http://en.wikipedia.org/wiki/BSD_license">BSD</a>, <a href="http://en.wikipedia.org/wiki/GNU_General_Public_License">GPL</a>, <a href="http://en.wikipedia.org/wiki/MIT_license">MIT/X11</a>, or otherwise freely licensed that we can use, modify, fork, experiment with, study, and expand on. Free software is about <em>those</em> things. It does not hurt us to have free implementations of various things that would otherwise be proprietary, because part of the reason to run free software is the fact that it is itself <em>free</em>.</p>
<p>Alas, it seems that many people think that the reason to run free software is because they hate Microsoft. Indeed, that is one reason that a person could choose to run a free operating system. And there are many to choose from; hundreds of Linux distributions (both with GNU and alternative userland components), a handful of BSD systems (FreeBSD, NetBSD, OpenBSD and others) and a handful of other free operating systems such as <a href="http://en.wikipedia.org/wiki/Minix">MINIX</a>, <a href="http://en.wikipedia.org/wiki/ReactOS">ReactOS</a>, or <a href="http://en.wikipedia.org/wiki/Syllable_OS">Syllable</a>. However, for those of us who use free software because we love it, that is not (necessarily) the reason. Indeed, many of us also have feelings for Microsoft ranging from neutral to blazing hatred for their software, common business practices, or both. These people argue against Mono because they think that it means that Microsoft is somehow “infecting” the free software world and they already ran away from such an “infection” in the world of proprietary software. By this point of view, there is a great deal that such a user can never use, such as the Web. Since they continue to use technologies “infected” by the influence of Microsoft, that must not be their primary motivation.</p>
<p>Can patents have an adverse affect on software systems, when software is permitted to be patented? Yes. Look at <a href="http://www.cl.cam.ac.uk/~mgk25/stallman-patents.html">the story of compress and gzip</a>. The reason gzip came into being was because of a patent on the LZW compression scheme that affected the compress program. In that case, free software’s answer was to replace the algorithm with a new one, instead of modifying the original one. Either option would likely have been acceptable. Also look at FreeType, <a href="http://www.freetype.org/patents.html">portions of which has code that is covered by patents owned by Apple Computer</a>, and the solution to getting around them is disabiling them in the default build, letting people who have the lawful ability to run that code enable it manually, themselves. The community has ways to deal with and work around these things.</p>
<p>If there comes to light a real and specific patent threat against the Linux kernel, against the GNU core utilities, against the Mono runtime or against a piece of free software yet-to-be-written, the answer will be much the same; for something as large as Mono, a modification to circumvent the patent would be done. For something as small and replaceable as compress, a new program with a new or thought-to-be patent-free algorithm would instead be written. Potentially even, resistance would be a viable method, such as is the strategy of the EFF’s <a href="http://w2.eff.org/patent/">Patent Busting Project</a>.</p>
<h2>“It’s From Microsoft”</h2>
<p>The other major argument that I often hear (or read) is that “Mono is from Microsoft”. Even if it were true, it is an <a href="http://en.wikipedia.org/wiki/Argumentum_ad_hominem">argumentum ad hominem</a>, which is a deceitful and fruitless argument tactic. That said, Mono is not “from Microsoft”. It is also not “from Novell,” as it was created prior to Novell acquiring <a href="http://en.wikipedia.org/wiki/Ximian">Ximian</a>.</p>
<p>More than one person on the Internet has quoted the following sentence given by ECMA as an answer to a query on the CLI:</p>
<blockquote><p>Ecma does not have anything to do with possible licensing of .NET. But Microsoft is one of our members, so I have asked them whom to contact there – if anything is needed, what I just do not know.</p></blockquote>
<p><em>This statement is factually correct</em>. However, most people stop there and fail to apply their critical thinking skills—which we all have and are capable of using. ECMA indeed <em>does not</em> have anything to do with the licensing of .NET. .NET is Microsoft’s implementation of the ECMA and ISO standards that comprise the CLI and the BCL, including the runtime environment and the IL engine and the C# programming language. It <em>is not</em> the standard. .NET is distributed under a typical Microsoft EULA, with some permissions for redistribution (as is the case with many of Microsoft’s runtime libraries). Along the same lines, <strong>ECMA <em>does not</em> have anything to do with the licensing of Mono</strong>, which is licensed under the GPL and MIT licenses. They cannot answer questions directly pertaining to either. In short: ECMA can say nothing of an implementation. Consider this, if you asked about DHCP, and they said, “We have nothing to do with the licensing of ISC DHCPd,” it would be the same; DHCP is a <em>protocol</em>, a <em>specification</em>, and ISC DHCPd is <em>an implementation</em>.</p>
<p>This is a simple case of either the wrong question being asked, or someone along the “telephone” chain misunderstanding the question and/or rephrasing it to become incorrect. So the correct answer to the wrong question came back out. This is life.</p>
<p>Mono was started by the same programmer who co-founded the <a href="http://en.wikipedia.org/wiki/GNOME">GNOME</a> project (a GUI implementation), and who wrote <a href="http://en.wikipedia.org/wiki/Midnight_Commander">Midnight Commander</a> (a free software and enhanced reimplementation of the old <a href="http://en.wikipedia.org/wiki/Norton_Commander">Norton Commander</a> program from the days of DOS), both of which are licensed under the GNU GPL, Miguel de Icaza (see the <a href="http://en.wikipedia.org/wiki/GNOME#History">History section of the Wikipedia article of GNOME</a> and the <a href="http://www.ibiblio.org/mc/FAQ">MC FAQ</a>, § 10.1). This was quite some time before Ximian was acquired by Novell. Now, I am not saying that everything de Icaza has written or worked on is absolutely awesome—that would be a flawed assumption. He is an intelligent programmer and a competent leader, but that does not in and of itself mean that everything he has done has been perfect. However, GNOME, Midnight Commander, and Mono each stand on their own merits. Mono is to .NET what Midnight Commander is to Norton Commander: a free software analog to the other product which is not identical and in some (if not many) ways demonstrably superior.</p>
<p>In case you were caught unawares, here is a list of other technologies that Microsoft has had (at least) a part in creating or spreading: <a href="http://tools.ietf.org/html/rfc2616">the HTTP/1.1 standard</a>, <a href="http://www.ietf.org/rfc/rfc2617.txt">HTTP Digest Authentication</a>, <a href="http://en.wikipedia.org/wiki/SOAP#History">SOAP</a>, <a href="http://en.wikipedia.org/wiki/Web_Services_Description_Language#History">WSDL</a>, <a href="http://www.ietf.org/rfc/rfc4406.txt">Sender ID</a>, <a href="http://www.ietf.org/rfc/rfc2730.txt">MADCAP</a>, <a href="http://www.ietf.org/rfc/rfc2782.txt">DNS SRV</a>, <a href="http://www.faqs.org/rfcs/rfc2637.html">PPTP</a>, <a href="http://en.wikipedia.org/wiki/GW-BASIC">many</a> <a href="http://en.wikipedia.org/wiki/QuickBasic">variants</a> <a href="http://en.wikipedia.org/wiki/QBasic">of</a> the BASIC language, and many more. Many of the developments that they have put time and effort into over the years, we still benefit from today. Is Microsoft a bad company? Generally, it seems as such. But they are a <em>company</em>, not a person. Even still, like people, they can not be inherently good nor evil, even though their actions can be one or the other. Are they always bad? No. Are they always good? Certainly not. Are they incapable of being productive? No, they are capable of helping, even if their primary motivation is to help themselves first.</p>
<h2>A Digression on “Law”</h2>
<p>Freedom is something that we <em>all</em> must use, and pay for, or we lose it. Some of us have never had it and have to pay a price to gain it. Admittedly, this section is apt to largely only accidentally apply to non-U.S. regions of the world, so if it does not apply to you, skip it.</p>
<p>In the United States, we have this funny thing: we have the right to vote. On leaders. On issues. In some states in the U.S., people can even <em>be</em> the legislators, given sufficient motivation. This is called <a href="http://en.wikipedia.org/wiki/Initiative">citizen’s initiative</a>. Some states have both direct and indirect citizen’s initiative. But at the federal level of government here, what we have are <a href="http://en.wikipedia.org/wiki/United_States_House_of_Representatives">representatives</a>.</p>
<p>Now, we can write letters to our representatives and ask them to consider and raise certain issues at the federal legislature on our behalf. This of course does not work if only one of us does so, nor does it work if only a small handful of people from a certain district were to do so. It would have a significant effect, however, if many people from many districts—and in many states—were to do so. This is the power that we have as Americans to craft the laws which apply to our land. This can, of course, be used for both good and bad laws to be created. This is why we have courts. It sounds terribly basic, but it is something that we all seem to forget that we can do sometimes, or that we only think of to do for especially major atrocities. No, it is something that we can do for many things. Patent law is one of these things. If we want to assure ourselves that patent law goes away, <em>we have a limited power to make that happen</em>, through our representatives. Let us not forget that.</p>
<p>However, there is a more important set of law that we also forget about, which does not apply in any singular territory or state: <em>actual</em> law. That whole process that builds common law, case law. Now, I am not saying that it is okay to just blindly disobey law. But law is not crafted through the idle state of society. There are provisions in law for certain things—affirmative defenses—to make otherwise illegal things legal precisely because nothing is purely black-and-white. There is no law that says that it is unconditionally wrong to kill another person; it is not <a href="http://en.wikipedia.org/wiki/Murder">murder</a> if you are absolutely required to kill in order to defend yourself, for example. Changes to law to add affirmative defenses sometimes occur as part of a realization that a law prohibited too many things, and laws are written, amended, and tried in courts all the time to try to find gaps or holes in the law and refine them, through new legislation or through new case law. Therefore, an action that may be illegal by statute is not necessarily illegal if there is some reasonable cause for it not to be and that reasonable cause is noted by a court or a body of legislation (such as Congress).</p>
<p>On some level, <em>everyone</em> knows this. Many people commit wanton acts of copyright infringement and do not even think twice about it, because they do not perceive it to be wrong. Some people only “pirate” copyrighted acts that are of a certain age, seeing codified law on the length of copyright as invalid and refusing to recognize it. After all, whose definition of “wrong” are we working with? There may be consequences for such actions, and people more or less accept that when they commit the action that they know to be wrong, at least as far as law is concerned. But there are certain things that, if disregarded entirely amongst an entire population, have a funny way of finding themselves to disappear from the law, either because the law is dropped from the books or because the executive branch of government no longer bothers to enforce it.</p>
<h2>Conclusion</h2>
<p>Before patently (ha, ha) screaming against Mono’s inclusion in various distributions, be that Gentoo, Ubuntu, Debian, Slackware, or $YOUR_DISTRO_HERE, think about something: Why?</p>
<p>Mono is no more inherently dangerous than any piece of GNU software, the Linux kernel, the various BSD-derived operating systems, or any other piece of free software. All software amounts to very specialized applications of mathematics; data is input, transformed, and output in every system. That does not matter if the data is bytes to a sound card, a stream passing through a compression program, a cryptographic encryption or hashing system, an application-layer protocol, a network-layer protocol… whatever. It does not matter. All software has risk of infringing on a patent. Not even proprietary software is safe against software patents held by others, even when the author of the softare and the backer of the legal team behind it is as wealthy as Microsoft’s.</p>
<p>There are certainly issues that we all—as a community—need to get together and work with. Development is <em><strong>not</strong></em> the only thing that people can do in the community. However, spreading FUD is not helpful, and it seems to be catching on these days. Are we not the very same community that worked to debunk Microsoft’s FUD, now wasting time and resources that would have better gone into the development of software, the maintainence of Web sites advocating and supporting free software, the documentation of user software and development APIs, or research on various aspects of the software (including trying to fish out potentially infringing patents and helping the community by bringing them to light)?</p>
<p>Freedom is not free. If you care for free software, you <em>can</em> help. Are you good at reading highly-obfuscated documents? If so, you could help the free software world by reading patents and trying to document them and where they apply. Are you good at reading source code? You could work together with the patent-readers to audit code and find things that are potentially covered by patents and alert someone—presumably a developer for that project, whatever it is—to the specifics so that the issue can be further investigated and dealt with in some way. Likewise, there are a ton of other ways that people can help free software to grow, help new free software projects to mature, help old ones to be maintained and/or documented, help contribute CPU cycles, disk space, or network bandwidth to projects that you care about (especially the ones that are independent and not under the umbrella of the Free Software Foundation, the GNOME Foundation or the Linux Foundation).</p>
<p>Yes, you can help free software out, even if you cannot fix bugs. Just <em>help</em>, don’t <em>hurt</em>. Those who are hurting us as a whole, the ones who are making us look like immature preadolecents, are doing the free software community a mighty disservice. So what if you do not like a particular piece of free software on your system? If you do not like it, remove it. If you do not like it being in your distribution, then change distributions. Do something about it. If you <em>actually</em> want to discuss it, then fine. Find a forum to house a rational debate on the issue. Short of that, this pointless war—like we Americans’ wars on terror and drugs—really needs to stop. After all, <a href="http://en.wikisource.org/wiki/A_house_divided">“A house divided against itself cannot stand,”</a> so let us not fall.</p>
<p><strong>Edited at 2009-06-22T05:13:51Z to fix a typographical error.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mike.trausch.us/blog/2009/06/21/the-%e2%80%9cmono-war%e2%80%9d-is-getting-very-dirty-and-out-of-hand-it-must-stop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

