<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.maximumpc.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Maximum PC make RSS Feed</title>
 <link>http://www.maximumpc.com/tags/make</link>
 <description>used for category lists, takes arguments</description>
 <language>en</language>
<item>
 <title>How-To: Compile Programs From Source in Linux</title>
 <link>http://www.maximumpc.com/article/howtos/howto_compile_programs_from_source_linux</link>
 <description>&lt;!--paging_filter--&gt;&lt;h2&gt;Reasons to compile&lt;/h2&gt;
&lt;table border=&quot;0&quot; align=&quot;right&quot;&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
digg_url = &#039;http://www.maximumpc.com/article/howtos/howto_compile_programs_from_source_linux&#039;;
&lt;/script&gt;&lt;script src=&quot;http://digg.com/tools/diggthis.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;With the prevalence of software available for many distros, why would anyone want to compile software from source? Compiling allows you to custom-fit a program to your particular hardware configuration and CPU architecture, which is useful if a program has no binary that is compatible with your processor. However, this is seldom a problem these days, since most computers now use 32 or 64-bit x86 processors. In the past, Linux enthusiasts often compiled programs from source to wring the greatest possible performance out of their hardware. More recently, this has mostly become a non-issue due to the increases made in computing speed; while compiling may offer a slight performance increase, it is not enough to really make a difference. &lt;/p&gt;
&lt;p&gt;Although the introduction of package management on most distros, less diversity in CPU architecture among the user base, and massive increases in hardware speed have largely reduced or eliminated the need to compile software yourself, there are still a few instances where you would have to do so. Although the various official and unofficial software repositories for Ubuntu and other distros include most of the tools that the average user would need for any given purpose, the repositories are not completely comprehensive. Old packages sometimes get dropped and updated versions are often slow to be added. It may also take a release cycle or more for brand-new programs to be included. &lt;/p&gt;
&lt;p&gt;While Ubuntu and Debian have “backports” repositories that have fairly new packages in them, many other distros do not have such a resource. For large projects with large community support, the developer may offer nightly builds, but this is not the case for most projects. The only reliable way to get bleeding-edge software (stability issues aside) is to either find a repository that has it or download the source code from the developer and build it yourself. &lt;/p&gt;
&lt;p&gt;If you want to be a programmer at some point, you are going to need to know how to compile applications, since that is really the only way to develop your own projects and effectively contribute your own code to open source projects that other people have started.&lt;/p&gt;
&lt;p&gt;It is also wise to compile security-oriented software (like encryption tools) yourself. Although binaries are generally trustworthy if they came from an official repository or developer website, you can never really be 100% sure of what you&#039;re getting unless you build it yourself. (preferably after a code audit, if you have sufficient skill to do so) &lt;/p&gt;
&lt;p&gt;Alternatively, you may find a program you are interested in, but it is not packaged for your distribution (e.g. RPM packages on a DEB-based distro) and there is no native package available for you to use. While there are tools (like alien) that can convert packages from one type to another, the program may not always work correctly after it has been converted. &lt;/p&gt;
&lt;p&gt;In such situations, your only real option is to build from source.&lt;/p&gt;
&lt;h2&gt;Reasons &lt;em&gt;not &lt;/em&gt;to compile&lt;/h2&gt;
&lt;p&gt;Although compiling software from source can solve some of your problems, it can also create new ones. Compiling and installing software from source effectively bypasses your package management system. This means that you must personally do the work that your package management system would otherwise do, such as keeping track of installed software, satisfying dependencies, and even preventing conflicts between different programs. This last situation is where the most can go wrong.&lt;/p&gt;
&lt;p&gt;A decent package manager is aware of the specific version of the dependencies that a program needs to run and is able to cross-reference that data with the needs of other programs. This is especially important when updating; if a new version of a program includes dependencies that would break other installed programs, the package management tool should postpone installing the new version until the other programs that would be affected can be safely updated as well. When you compile from source, you are forcing your changes through safeguards meant to help protect your system&#039;s software integrity. This can be very dangerous if you have not taken the time to understand and estimate the repercussions this action may have. &lt;/p&gt;
&lt;p&gt;Compiling software from source is a useful concept to understand, (or even essential, depending on your aspirations) but it should always be considered a measure of last resort. On most modern distros, there are much better ways to install software, and these should always be used first whenever possible. &lt;/p&gt;
&lt;p&gt;This guide will tell you how to compile programs from source on Linux. We will not cover the specifics of building a kernel, but we will teach you how to build individual programs on any distro. Likewise, this guide will not address specialized tools (like emerge) that are found on source-based distros like Gentoo. This guide is intended for fairly advanced users instead of those new to Linux. Some knowledge of the terminal is required due to the way the compiling process works. &lt;/p&gt;
&lt;h2&gt;Preparation&lt;/h2&gt;
&lt;p&gt;Before you compile your first program, you must prepare your compiler toolkit. Linux has many compilers and related tools available as part of the GNU Project; these include gcc, (the GNU C compiler) g++, (the GNU C++ compiler) make, (a tool to help automate the build process) and many others. You will probably need to install them yourself (check your distro&#039;s repositories) since few distros include them out of the box. &lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/get_build_essential_sm.png&quot; width=&quot;415&quot; height=&quot;289&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Fortunately, many distros include most of the compiler utilities in a single package so you won&#039;t have to install each one separately. (Ubuntu&#039;s is called “build-essential”) Unless you are familiar with the language the program is written in, you may not know what compilation tools you will need until you run the configuration script. &lt;/p&gt;
&lt;h2&gt;Standard procedure&lt;/h2&gt;
&lt;p&gt;1.     First, you must acquire the source code of the program you wish to compile. (this can be found at the developer&#039;s website or at an online resource like Sourceforge.) Source code usually comes in archive files called tarballs, identifiable by a tar.gz extension. You should save the tarball to a folder where you have write permission, such as your own home directory. The temp (/tmp) folder is not recommended due to reasons we will address later. &lt;/p&gt;
&lt;p&gt;2.    Open a terminal and navigate to the directory where you saved the source tarball. &lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/before_unzip_sm.png&quot; width=&quot;415&quot; height=&quot;289&quot; /&gt; &lt;/p&gt;
&lt;p&gt;3.    Extract the tarball by typing “tar -xvf program.tar.gz”. (obviously, you should substitute program.tar.gz with the real filename) Most of the time, a tarball will create a new folder (this guide will refer to it as the build directory) during the extraction process and will place its contents in there. &lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/unzip_process_sm.png&quot; width=&quot;415&quot; height=&quot;275&quot; /&gt; &lt;/p&gt;
&lt;p&gt;4.    Navigate to the build directory.&lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/after_unzip_sm.png&quot; width=&quot;415&quot; height=&quot;289&quot; /&gt; &lt;/p&gt;
&lt;p&gt;5.    The build directory may have many files and subfolders in it, but the first thing you should look for is a file called “configure”. For a moment, you should compare the software compilation process to cooking. Before you start making dinner, you need to know what goes into a recipe, (and the cooking instructions) or the dish will turn out wrong. The configuration script is like a grocery list; it makes sure that you have everything you need before the compilation process begins. &lt;/p&gt;
&lt;div style=&quot;text-align: center&quot;&gt;&lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/build-dir_sm.png&quot; width=&quot;415&quot; height=&quot;289&quot; /&gt;&lt;/div&gt;
&lt;hr /&gt;
&lt;p&gt;6.    Run the configuration script by typing “./configure”. (do not omit the dot and forward slash at the beginning) The configuration script will run in the terminal and will check your system for the presence of the necessary compilers and dependencies. While it is running, the configuration script will provide output from the various tests it conducts. This output is your guide to fixing any problems you may encounter. If the configuration script finishes successfully, go to Step 8. Otherwise, go to the next step. &lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/about_to_run%20_configure_sm.png&quot; width=&quot;415&quot; height=&quot;289&quot; /&gt; &lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/configure_running_sm.png&quot; width=&quot;415&quot; height=&quot;289&quot; /&gt; &lt;/p&gt;
&lt;p&gt;7.    If the configuration script fails, it will usually tell you the reason why. The most common cause of failure is a missing or outdated dependency. A program may require a specific version of a dependency, and your only recourse is to download and compile the right version from source before continuing to compile the program that needs it. &lt;/p&gt;
&lt;p&gt;Quite often, the situation can be recursive; a dependency may have other dependencies it relies on and those must be compiled as well. (and so on) This is why compiling can be so dangerous; it is possible for a new dependency (or a sub-dependency) you compiled to cause unforeseen conflicts with the version you already have installed. However, this does not always happen; it is possible and fairly common for different versions of various dependencies to exist side-by-side without any problems. &lt;/p&gt;
&lt;p&gt;8.    If the configuration script finishes successfully, it will generate a set of build instructions called a “makefile”. The makefiles (there may be one in each subdirectory in addition to the main one) give the precise instructions for compilation to the Make program. The Make program controls the compilers and tells them what to do. To start the compilation process, type “make”. If there are no makefiles, you will not be able to compile until the situation is rectified. Although you can run “make” as root, it generally isn&#039;t required.&lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/make1_sm.png&quot; width=&quot;415&quot; height=&quot;289&quot; /&gt; &lt;/p&gt;
&lt;p&gt;The most common error message you can run into at this step is “make: *** No targets specified and no makefile found. Stop.” If this error happens, that means that the Make program has no makefile to use, and therefore has nothing to do. In this case, the first thing you should do is make sure that the configuration script finished successfully, since it would have generated the makefiles if it did. &lt;/p&gt;
&lt;p&gt;The Make program will produce output as it processes each source code file. Don&#039;t worry if you don&#039;t understand the compiler output; at this point, all you have to do is wait for it to finish. Depending on the size of the program you are compiling and the speed of your computer, it may take anywhere from several seconds to a few minutes (or longer) to compile everything. &lt;/p&gt;
&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/make_finished_sm.png&quot; width=&quot;415&quot; height=&quot;289&quot; /&gt;&lt;/p&gt;
&lt;p&gt;9.    Once the Make program is finished, you will have to install the program. Switch to root. (type “su” and provide the root password) As root, type “make install” and the Make program will handle the installation for you. Root access is required because the make program will add files to the /usr/bin directory and other places that your own user account does not have permission to write to. &lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/before_install_sm.png&quot; width=&quot;415&quot; height=&quot;289&quot; /&gt; &lt;/p&gt;
&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/after_install_sm.png&quot; width=&quot;415&quot; height=&quot;275&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Post-Setup&lt;/h2&gt;
&lt;p&gt;After the program is installed, you should be able to use it. You should leave the build directory in place after compilation because that will allow you to uninstall or reinstall the program later. (typing “make uninstall” in a program&#039;s build directory will remove the program if it is installed. Typing “make install” again will reinstall it.) If a program&#039;s build directory is removed, you will have to recreate it (by compiling the program again) to be able to manage any installed instances of the program with any sort of ease. &lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/finished%20program_sm.png&quot; width=&quot;415&quot; height=&quot;289&quot; /&gt; &lt;/p&gt;
&lt;p&gt;For this reason, you should not compile a program from the temp folder, since the build directory will be destroyed when the computer shuts down. &lt;/p&gt;
&lt;h2&gt;Anomalous procedures&lt;/h2&gt;
&lt;p&gt;Although most programs follow the standard procedure listed above, some programs do not. These are often small programs or older ones. In many instances, they may not have a configuration file and come with a preconfigured makefile instead. You may have to analyze the makefile yourself with Vim or another text editor to see what the program needs to in order to work. It is impossible to address every potential deviation from the standard procedure in this guide, but we can give you some advice to help you get started in these difficult situations. &lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://dl.maximumpc.com/galleries/linuxcompile/anomaly_sm.png&quot; width=&quot;415&quot; height=&quot;289&quot; /&gt; &lt;/p&gt;
&lt;p&gt;The key to figuring out a non-standard program is experimentation. The first thing you should do is run “make or “make install” to see what happens. Sometimes one (or both) of those commands is enough to get the program built and installed. If that doesn&#039;t work, you should check the developer&#039;s website or any readme files included in the project for further help. &lt;br /&gt;Also, keep in mind that many programs are notoriously hard to compile, even for experts. (OpenOffice.org is a prime example) This experience can be very frustrating, but persistence is the only way to get through it.&lt;/p&gt;
</description>
 <comments>http://www.maximumpc.com/article/howtos/howto_compile_programs_from_source_linux#comments</comments>
 <category domain="http://www.maximumpc.com/taxonomy/term/7245">compile</category>
 <category domain="http://www.maximumpc.com/taxonomy/term/7246">distros</category>
 <category domain="http://www.maximumpc.com/geek_tested/linux">linux</category>
 <category domain="http://www.maximumpc.com/taxonomy/term/6231">make</category>
 <category domain="http://www.maximumpc.com/geek_tested/software">Software</category>
 <category domain="http://www.maximumpc.com/geek_tested/ubuntu">ubuntu</category>
 <category domain="http://www.maximumpc.com/taxonomy/term/32">How-Tos</category>
 <pubDate>Tue, 10 Mar 2009 15:00:00 -0500</pubDate>
 <dc:creator>Will Kraft</dc:creator>
 <guid isPermaLink="false">5571 at http://www.maximumpc.com</guid>
</item>
<item>
 <title>Recapping a Year of Open-Source, the Top Stories in 2008!</title>
 <link>http://www.maximumpc.com/article/features/recapping_a_year_opensource_top_stories_2008</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;As 2008 winds to a close, we&#039;re taking a look back at some of the year&#039;s highlights in the open-source world.  And what a year it&#039;s been!  Google phones and the android operating system finally saw the light.  The semi-popular MMO Myst decided to go entirely open source, the genre&#039;s first &amp;quot;conversion.&amp;quot;  And Microsoft--yes, Microsoft--decided to embrace open-source development with one hand while chastising it with the other.&lt;/p&gt;
&lt;p&gt;Since we just started covering open-source as a weekly beat here at Maximum PC, we thought it best to go to the community--in the true spirit of open-source development--to see what made the biggest headlines in 2008.  And don&#039;t worry, we&#039;ll have a full roundup of 2009 predictions for you right as the big ball drops!&lt;/p&gt;
&lt;h2&gt;&lt;a href=&quot;http://blog.makezine.com/archive/2008/11/_draft_open_source_hardwa.html&quot;&gt;&lt;strong&gt;Hot Open-Source Hardware&lt;/strong&gt;&lt;/a&gt; &lt;br /&gt;&lt;/h2&gt;
&lt;div style=&quot;text-align: center&quot;&gt;&lt;a href=&quot;http://blog.makezine.com/archive/2008/11/_draft_open_source_hardwa.html&quot;&gt;&lt;img src=&quot;/files/u16580/daveblog_2008os1.jpg&quot; width=&quot;415&quot; height=&quot;359&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;Every year, Make magazine publishes a list of all of the big open-source hardware projects that have come out during the year.  If you&#039;re a fan of circuit boards, glowing things, buttons that make music, the brain goggles pictured above, or just about anything having to do with the fusion of electronics and geekery, this list is for you. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;&lt;a href=&quot;http://www.examiner.com/x-1593-San-Diego-Video-Game-Examiner~y2008m12d28-Getting-Copies-Right-Open-Source-Gaming&quot;&gt;&lt;strong&gt;LittleBigPlanet&lt;/strong&gt;&lt;/a&gt; &lt;br /&gt;&lt;/h2&gt;
&lt;div style=&quot;text-align: center&quot;&gt;&lt;a href=&quot;http://www.examiner.com/x-1593-San-Diego-Video-Game-Examiner~y2008m12d28-Getting-Copies-Right-Open-Source-Gaming&quot;&gt;&lt;img src=&quot;/files/u16580/daveblog_2008os2.jpg&quot; width=&quot;415&quot; height=&quot;234&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;In many ways, Media Molecule&#039;s experiment with its LittleBigPlanet  game for the PlayStation 3 highlighted the power of a community mixed with awesome gameplay--which helped the game gain far more traction than Maxis&#039; big create-your-world title, Spore. If you think about it, LittleBigPlanet embodies the spirit of open-source.  You use the provided tools to create all sorts of environments, creations, and modifications.  You then go and release these as directed by the company.  Our recommendation for LittleBigPlanet 2?  Let the users tweak and release other users&#039; designs--now &lt;em&gt;that&#039;s&lt;/em&gt; open source!
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;&lt;a href=&quot;http://www.linuxinsider.com/story/Are-Open-Source-Games-Ready-for-the-Big-Time-65609.html&quot;&gt;Open-Source Gaming Gears Up&lt;/a&gt; &lt;br /&gt;&lt;/h2&gt;
&lt;div style=&quot;text-align: center&quot;&gt;&lt;a href=&quot;http://www.linuxinsider.com/story/Are-Open-Source-Games-Ready-for-the-Big-Time-65609.html&quot;&gt;&lt;img src=&quot;/files/u16580/daveblog_myst.jpg&quot; width=&quot;415&quot; height=&quot;259&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;According to &lt;span&gt;Chris Melissinos, chief gaming officer at Sun Microsystems, &lt;/span&gt;&lt;span&gt;the open source gaming space is hitting the market at the &amp;quot;exact right time.&amp;quot;  Perhaps this is an indication why &lt;a href=&quot;/article/features/dreaming_massively_multiplayer_open_source&quot;&gt;Myst Online decided to turn&lt;/a&gt; to the open-source community instead of pulling the plug on its MMO for good. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;&lt;a href=&quot;http://www.fiercewireless.com/story/2008-year-review-launch-android-and-open-source-operating-system-wars/2008-12-22&quot;&gt;Android and a Google Phone &lt;/a&gt;&lt;/h2&gt;
&lt;div style=&quot;text-align: center&quot;&gt;&lt;a href=&quot;http://www.fiercewireless.com/story/2008-year-review-launch-android-and-open-source-operating-system-wars/2008-12-22&quot;&gt;&lt;img src=&quot;/files/u58308/opensourceproject.jpg&quot; width=&quot;415&quot; height=&quot;214&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;To much hurrah, Google launched its T1-Mobile G1 phone in the latter half of 2008.  More importantly, its Linux-based Android operating system debuted as an open-source software package for the handset market to play with.  Microsoft&#039;s proprietary Windows Mobile turned a little green at the notion, especially given that large manufacturers Sony Ericsson, LG, Motorola, and Samsung--to name a few--all expressed excitement in the form of product launches and announcements. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;&lt;a href=&quot;/article/news/acer_becomes_new_netbook_top_dog&quot;&gt;Everyone Has A Netbook&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt; &lt;a href=&quot;/article/news/acer_becomes_new_netbook_top_dog&quot;&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center&quot;&gt;&lt;img src=&quot;/files/u69/Asus_EeePC_1002HA.png&quot; width=&quot;415&quot; height=&quot;339&quot; /&gt;&lt;/div&gt;
&lt;p&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In 2008, Asus proved that an inexpensive laptop doesn&#039;t have to be cheap.  The company&#039;s Eee PCs helped set the ball rolling for the rise of the mini-laptop, or netbook.  For around $350 or thereabouts, you can now have a fully-functional word processor and the ability to access the Internet using a portable device that&#039;s still more cost-efficient than a comparable Linux-based desktop rig.  While Crysis might be out of the picture for these little wonders, the rise of the Linux-based laptop helped catapult laptop sales &lt;em&gt;above&lt;/em&gt; desktop sales in the third quarter of 2009--the first time that&#039;s ever happened.  As for Asus, the originator just recently lost its place at the king of the netbook hill to Acer.
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Jacobsen_v._Katzer&quot;&gt;Enforceable Open-Source Licensing&lt;/a&gt;&lt;/h2&gt;
&lt;div style=&quot;text-align: center&quot;&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Jacobsen_v._Katzer&quot;&gt;&lt;img src=&quot;/files/u16580/gavel_dm.jpg&quot; width=&quot;415&quot; height=&quot;130&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The occasional hubbub and worry about open-source licenses being unenforceable in the eyes of the law was silenced this past year. A ruling by the U.S. Court of Appeals for the Federal Circuit acknowledged the power of the open-source license by holding that those who do not follow the provisions of a license can be found in violation of the creator&#039;s copyright. Precedent has now been set, all thanks the legal wrangling of &lt;em&gt;Jacobsen vs. Katzer&lt;/em&gt;--a dispute over software for model trains.
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;&lt;a href=&quot;http://blog.wired.com/27bstroke6/2008/08/its-the-least-p.html&quot;&gt;ReiserFS Founder Convicted of Murder&lt;/a&gt;&lt;/h2&gt;
&lt;div style=&quot;text-align: center&quot;&gt;&lt;a href=&quot;http://blog.wired.com/27bstroke6/2008/08/its-the-least-p.html&quot;&gt;&lt;img src=&quot;/files/u46173/judge.jpg&quot; width=&quot;415&quot; height=&quot;276&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;In a story that dominated news headlines, Hans Reiser--developer of Linux&#039;s ReiserFS file system--confessed to killing his wife, Nina.  The court battle lasted approximately a year and a half, with Reiser maintaining his innocence throughout the proceedings.  His &amp;quot;geek defense,&amp;quot; as his testimony was billed, was as peculiar as his explanations for his actions following his wife&#039;s disappearance. These included him hosing out his car, removing his car&#039;s passenger seat, and keeping books about murder--as well as a sleeping bag covered with his wife&#039;s blood--in the vehicle.
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;&lt;a href=&quot;/article/features/microsofts_opensource_push&quot;&gt;Microsoft Turns a New Lea...  Nah&lt;/a&gt;&lt;/h2&gt;
&lt;div style=&quot;text-align: center&quot;&gt;&lt;a href=&quot;/article/features/microsofts_opensource_push&quot;&gt;&lt;img src=&quot;/files/u16580/daveblog_ballmer.jpg&quot; width=&quot;415&quot; height=&quot;225&quot; /&gt;&lt;/a&gt;&lt;br /&gt;(photo credit: &lt;a href=&quot;http://flickr.com/photos/begley&quot;&gt;DBegley&lt;/a&gt;)&lt;/div&gt;
&lt;p&gt;Ever the wishy-washy company, Microsoft chose to embrace the tenets of the open-source movement a little bit stronger in 2008.  The company released an open-source CMS platform called Oxite that has enough customization and multi-user functionality to give Wordpress room for concern.  It&#039;s acquired companies that contribute to open-source initiatives and even contributed to a few itself.  And true to Microsoft form, it started liking open-source just a little bit more while still scorning open-source software as an over-expensive solution for enterprise markets.&lt;/p&gt;
</description>
 <comments>http://www.maximumpc.com/article/features/recapping_a_year_opensource_top_stories_2008#comments</comments>
 <category domain="http://www.maximumpc.com/taxonomy/term/31">Features</category>
 <category domain="http://www.maximumpc.com/geek_tested/acer">Acer</category>
 <category domain="http://www.maximumpc.com/geek_tested/android">android</category>
 <category domain="http://www.maximumpc.com/geek_tested/asus">asus</category>
 <category domain="http://www.maximumpc.com/geek_tested/google">Google</category>
 <category domain="http://www.maximumpc.com/geek_tested/hardware">hardware</category>
 <category domain="http://www.maximumpc.com/taxonomy/term/5365">LittleBigPlanet</category>
 <category domain="http://www.maximumpc.com/taxonomy/term/6231">make</category>
 <category domain="http://www.maximumpc.com/geek_tested/microsoft">microsoft</category>
 <category domain="http://www.maximumpc.com/taxonomy/term/6135">myst</category>
 <category domain="http://www.maximumpc.com/taxonomy/term/3557">netbook</category>
 <category domain="http://www.maximumpc.com/geek_tested/opensource">open-source</category>
 <category domain="http://www.maximumpc.com/taxonomy/term/6232">reiser</category>
 <category domain="http://www.maximumpc.com/geek_tested/software">Software</category>
 <category domain="http://www.maximumpc.com/taxonomy/term/6230">wrapup</category>
 <category domain="http://www.maximumpc.com/taxonomy/term/147">Web Exclusive</category>
 <pubDate>Tue, 30 Dec 2008 10:00:00 -0600</pubDate>
 <dc:creator>David Murphy</dc:creator>
 <guid isPermaLink="false">4680 at http://www.maximumpc.com</guid>
</item>
</channel>
</rss>
