<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jomyr's Technical Support Site! &#187; Operating Systems</title>
	<atom:link href="http://jomyr.wordpress.com/category/operating-systems/feed/" rel="self" type="application/rss+xml" />
	<link>http://jomyr.wordpress.com</link>
	<description>"Open Source" Billions of minds behind!</description>
	<lastBuildDate>Sat, 15 Mar 2008 05:25:44 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='jomyr.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/462294f1b6a221c9b6c28368c39ac678?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Jomyr's Technical Support Site! &#187; Operating Systems</title>
		<link>http://jomyr.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jomyr.wordpress.com/osd.xml" title="Jomyr&#8217;s Technical Support Site!" />
		<item>
		<title>For educators who don&#8217;t know what is &#8220;open source&#8221;.</title>
		<link>http://jomyr.wordpress.com/2007/08/08/for-educators-who-dont-know-what-is-open-source/</link>
		<comments>http://jomyr.wordpress.com/2007/08/08/for-educators-who-dont-know-what-is-open-source/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 07:47:39 +0000</pubDate>
		<dc:creator>JOMYR ALIPIO</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://jomyr.wordpress.com/2007/08/08/for-educators-who-dont-know-what-is-open-source/</guid>
		<description><![CDATA[                              Open Source in Education
Abstract
 Today, schools across the country are making an effort to implement technology. This
effort is being hindered by issues of money, time, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=18&subd=jomyr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p align="left">                              Open Source in Education<br />
Abstract</p>
<p align="left"> Today, schools across the country are making an effort to implement technology. This<br />
effort is being hindered by issues of money, time, support and others. The author looks at<br />
Open Source and how it effects these issues. The paper begins with a history of Open<br />
Source and then looks into its implications for education.</p>
<p align="left"> Jomyr I. Alipio</p>
<p align="left">Athens Academy</p>
<p align="left"> Open Source College                                                                                                                                            June 2007</p>
<p>Introduction<br />
This informal essay is designed to help educators better understand Open Source<br />
software and what it means to schools using technology. While a complete<br />
understanding of Open Source is beyond the scope of this paper, you will gain enough<br />
knowledge to get started. This paper is meant to be a primer for educators who are<br />
looking for better and more efficient ways to use technology in schools.<br />
Open Source!? I don’t even know what Source is?<br />
Before we look at Open Source, we need to look at what source actually is. Any<br />
software that runs on a computer is created using a programming language. These<br />
languages were created by humans as a way to tell the computer what to do. These<br />
instructions to the computer are known as a program’s ‘source’. Before the computer can<br />
run these instructions, it has to compile the source code. Compiling is the process of<br />
turning a programming language into binary form (a string of 1s and 0s). Computers<br />
only understand 1s and 0s because at their fundamental level, they are just electrical<br />
switches that are either on (1) or off (0). This might seem like a restriction until you take<br />
in to account that modern computers can make millions and even billions of these<br />
manipulations in one second. Instead of communicating with the computer in binary, it is<br />
many times easier to use a human created language and then translate (compile) it. C++,<br />
Java, and Python are all examples of different programming languages . A great resource<br />
for learning more about a program’s makeup is How to Think Like a Computer Scientist<br />
by Allen Downey, Jeffery Elkner, and Chris Meyers. It is available online at<br />
http://www.thinkpython.com. To give you an idea of what these languages look like,<br />
let’s look at a little bit of actual code. It is tradition for every new programmer to start<br />
with the ‘Hello World’ program. It is a simple program that simply writes the phrase<br />
“Hello World” to the screen. I have provided code for C++, Java, and Python to give you<br />
a look at the different ways the same issue can be addressed.<br />
Hello World Program                         Code                          Output<br />
#include &lt;iostream&gt;<br />
int main()<br />
C++ programming language       {                                           Hello World<br />
std::cout &lt;&lt; “Hello World\n”;<br />
return 0;<br />
}<br />
Hello World Program                         Code                          Output<br />
class helloworld<br />
{<br />
public static void main(String args[ ])<br />
Hello<br />
Java programming language       {<br />
World<br />
System.out.println(&#8220;Hello World&#8221;);<br />
}<br />
}<br />
Hello World Program                      Code                           Output<br />
Python programming          print “Hello World”<br />
Hello World<br />
language<br />
As you can see, this simple task of printing the words “Hello World” to the screen<br />
can be done many different ways. There are many programming languages out there,<br />
which all have their strengths, weaknesses, and purposes. However, they all are designed<br />
to do one thing, take your directions and turn them into a form the computer understands.<br />
To better appreciate how complicated and unreadable binary is, just look at a simple<br />
binary-word translation. The phrase “Hello World,” in binary is<br />
“01001000011001010110110001101100011011110010000001010111011011110111001<br />
00110110001100100.” As you can see, this is not something that anyone can read, let<br />
alone write anything as complicated as a program. Now that you have a better<br />
understanding of what a program’s source is, we can look to what the open part is all<br />
about.<br />
What is Open Source anyways?<br />
Before we look into how Open Source can help educators, we first need to look at<br />
what it is. In short, Open Source is a way to develop a project that allows anyone to look<br />
at its progress and make changes. More importantly, for this essay, it is the ability to<br />
look at a computer program’s source code, modify, and redistribute it. This is the basic<br />
premise behind Open Source.<br />
On the other side of the fence is closed-source development. This is when a<br />
company creates a program, releases it, but keeps the source to themselves. For example,<br />
you can use the Microsoft application Internet Explorer, but you cannot see the code that<br />
makes it. Hopefully you are asking, “So, why do I need to see it?” or “Don’t they have<br />
the right to keep their intellectual property to themselves?” Instead of answering those<br />
questions directly, I will let you find them on your own when you discover a little more<br />
about Open Source.<br />
Welded Hood or Free Engine<br />
Imagine you are in the market for a new car. You decide to visit the two<br />
dealerships close by to decide which you will buy from. You walk onto the first lot to<br />
see what they have to offer. The company puts a lot of effort in advertising and letting<br />
everyone know that their cars are superior over all others. Being a smart consumer, you<br />
decide to dig a little deeper to see what their cars are all about. You discover that they<br />
sell their cars with the hood welded shut. They are the only ones who have access to how<br />
their cars work. Upon further investigation you also find that you wouldn’t even be<br />
buying the car. You would instead be licensing the privilege to use the car. The<br />
company has a detailed license process that restricts their cars use and if you break the<br />
license, they will hit you with a severe lawsuit. Being a little disappointed from your<br />
discoveries you decide to go to the other dealership in town hoping to find a better deal.<br />
The first thing you notice at the second lot is that the variety of vehicles is<br />
enormous, much more so than the first lot. You soon discover that the hoods are not<br />
welded shut, giving you or anyone else freedom to change anything about it. Even better.<br />
the engines this company has are free. You can replace your old car’s engine with a new<br />
one at no cost. You also have the choice of buying one of their new cars for a fraction of<br />
the price of the other dealer. Which one do you choose?<br />
Any person would choose the second lot over the first for obvious reasons. This<br />
story is meant to get you thinking about what you should expect when buying a product.<br />
How many rights do you think you should have as a consumer? Now apply this story to<br />
computer software. Does your decision change? Most likely, it won’t.<br />
In the Open Source culture, software is seen as a tool rather than a way to make<br />
money. While some Open Source projects turn a profit, the main driving force behind<br />
the development is to create a really good program. This high priority on the software<br />
and not the profit is enough to make some people jump on the bandwagon. However, it<br />
might not be enough for some and there are even more compelling reasons to use Open<br />
Source.<br />
Probably the most popular reasons to use Open Source software is that you can<br />
see the source code of the program you are using. You may (some restrictions may apply<br />
depending on what license it is under) freely change the code to your needs. Assuming<br />
you have the skill to do so, you can customize the source code to do anything you want.<br />
At first glance, this means very little to the non-programming populous. You might ask,<br />
“I have no idea how to program, so what is the point?” I would go back to the car story<br />
and retort, “Would you buy a car with the hood welded shut just because you don’t know<br />
how to change the oil?” Just because one does not have the skills to program (which are<br />
relatively easy to learn), does not mean that they should settle for a closed-source<br />
program.<br />
Where did this come from?<br />
To better understand the Open Source culture and how and why it exists we need<br />
to look at its past. Looking at its root will help you understand how it works and where<br />
the movement is going. Since my space here is limited, I am able to only cover what I<br />
view as the most important points in Open Sources history. If you would like to learn<br />
more, there are many great books and websites, which can be found in the resource<br />
section at the end of this essay.<br />
In the 1960s, the personal computer was not even heard of and computers were<br />
mainly used by the military and universities. It was unheard of for software to make<br />
money. Instead, hardware is what actually made the money. There were many<br />
manufacturers of computers and they were all different. They all had different hardware<br />
architectures and had their own operating systems (the software that makes a computer<br />
work). This meant that software written for a computer would only run on that computer.<br />
The software would have to be rewritten to work on other platforms and when computers<br />
we upgraded. This process wasted time and money on coding and training. These<br />
inefficiencies hindered technology from moving forward just because of the costs<br />
associated. The answer to this problem came from, of all places, New Jersey.<br />
In 1969, Dennis Ritchie and Ken Thompson of AT&amp;T Bell Labs had developed Unix, an<br />
operating system designed to be able to run on different architectures. This meant that<br />
software could be run on different computers without having to be rewritten. It also<br />
saved time in training because it was basically the same OS running on a different<br />
machine. Unix was originally developed just for use at AT&amp;T, but soon other people<br />
wanted to run it. Even though it was never meant to be a commercial product, AT&amp;T<br />
released Unix and the source code for a very small licensing fee. It was common in the<br />
day to release source code for no other reason than to let people see what is going on with<br />
the computer and to let them fix their own problems.<br />
Time went by and Unix transformed into a powerful and flexible operating<br />
system. Since you could basically buy the source code, many universities and<br />
corporations made their own customized distributions of Unix, which all had different<br />
tools and programs. These distributions were then licensed commercially as the personal<br />
computer market started to rise. The availability of source code started to disappear as<br />
well. Unix had transformed into what other commercially available projects were -<br />
expensive and closed-source. This left a void for people who wanted an operating system<br />
that was powerful, low-cost, and had the source code available. In steps the next major<br />
player in the annals of open source, Richard M. Stallman.<br />
In 1979, RMS (as he likes to be called) was working in the Artificial intelligence<br />
Laboratory at MIT. This same year the lab received the first laser printer from Xerox.<br />
While the printer was nice, it tended to jam. This required employee intervention, which<br />
was not that big of a problem except for the printer did not let the user know when it was<br />
jammed. Seeing this as a problem, Richard Stallman thought he would go about fixing it<br />
himself, as was custom in the AI lab. When he asked for the source code from Xerox his<br />
request was denied. The story goes that RMS went to Xerox himself to get it and was<br />
rudely sent away. This laid the foundation for Stallman’s belief that software should be<br />
free. “Free as in freedom, not as in free beer,” Stallman once said regarding which<br />
definition was meant when using the word free with software.<br />
Eventually RMS resigned from MIT to spend his time creating free software. He<br />
founded the Free Software Foundation (FSF) in 1985 to do just that. Some of the most<br />
popular products to come out of the FSF were the GNU (pronounced guh-noo, standing<br />
for GNU’s Not Unix) suites of free products. This included the GNU C compiler and the<br />
Emacs text editor, which are still widely used today. Even these products are<br />
overshadowed by what is arguably Stallman’s greatest contribution to the computer<br />
world, the GPL.<br />
Free software in itself was a commendable act but it was not enforceable. With<br />
the source code available there was not any way to prevent people from hording this free<br />
code and taking advantage of the work of others. RMS solved this issue with the GNU<br />
Public License or GPL. It created the legal backbone to free software that granted certain<br />
freedoms. These are as follows:<br />
1. The freedom to use the software and have access to the source code.<br />
2. The freedom to modify the software.<br />
3. The freedom to redistribute the software.</p>
<p>4. The freedom to ensure that all modifications must be redistributable.<br />
(Pavlicek, 2002)<br />
This license created an avenue and protected people who wanted to create free software.<br />
It also did not prevent people from making money off software either. Instead of taking<br />
the idea of selling some secret intellectual property, the document aligns itself with<br />
selling the convenience of providing the freely available code in and easily accessible<br />
form. (Pavlicek, 2002, p. 20)<br />
Even with all this free software, there was something missing: an operating<br />
system. The FSF was working on making their own OS, but its development was slowed<br />
by a number of reasons. One being, GNU was mainly used only in academic circles,<br />
businesses ignored the FSF as a bunch of weird idealists. Another was that even though a<br />
person could download the source for a GNU program and even change it, they had no<br />
say in the development of the programs themselves. This was done by the small team at<br />
the FSF. By 1990, a GNU OS seemed like it was never going to be released. The fill to<br />
this void came from an unlikely young man in Finland.<br />
Twenty-one year old Linus Torvalds, a student at Helsinki University, began a<br />
project that would spread to become the poster child of Open Source. In 1991, Linus got<br />
his first 386 computer (which would later become what we call a PC). He didn’t like<br />
MS-DOS and the other Unix’s were all commercial based and beyond his means as a<br />
student. He wanted a Unix-like operating system that was fun to work on. Since<br />
programming was his forte, he began writing his own operating system for fun. This<br />
emphasis on fun is key to understanding why people use and develop open source.<br />
Linus posted his work on Usenet groups and slowly other people started to notice.<br />
They looked at the code and started suggesting changes and submitted patches. Linus<br />
took these ideas and put them into his project and gave credit where it was due. This<br />
process caught on like wildfire and before long there were people from all over the world<br />
helping in the process. Later that year, Linus released version 0.1 of the Linux kernel. A<br />
kernel is the foundation of an operating system that controls base functions that make the<br />
computer work. Programs like the GNU C Compiler and Emacs are the programs which<br />
round out the Linux OS.<br />
Linux gained in popularity and by 1994, when version 1.0 was released, it had<br />
over 1 million users world-wide. (Pavlicek, 2002, p. 20) Since Linus began this project<br />
for fun and wanted others to use it he released it under the GPL. Linus did not sell his<br />
creation or get paid directly for it by anyone (though he did get stock options from<br />
companies who used his creation which eventually got him seven figures). Time went by<br />
and Linux started to become a major player in the OS market. In 2001, in his<br />
autobiography Just For Fun, Linus Torvalds mentions that there were hundreds of<br />
thousands of developers and a user base of 25 million.<br />
There are many other projects and people that contributed to make Open Source<br />
what it is today. It is not my goal to write a complete history, but instead to give you<br />
enough to understand why Open Source exists.<br />
Free Software versus Open Source<br />
Even though it sounds trivial, free software and Open Source software are not the<br />
same thing. The FSF used (and still does) the word free, meaning freedom. Their main<br />
focus was on the moral and ethical reasons behind creating “free” software. On the other<br />
side, Linux developers were only interested in the benefits of creating a free operating<br />
system. Even though the goals were alike, the philosophies were different and a new<br />
term was needed. The term Open Source was coined in 1998.<br />
This also helped the Open Source community continue to grow. The “free” in<br />
free software had become a problem. The media and others were always confusing the<br />
free with the monetary definition. While lower cost is a byproduct of this type of<br />
development it is not the main reason behind Open Source. The word “free” scared<br />
executives who thought these people were crazy for giving their programs away. When<br />
“Open Source” was used, it became easier to teach people why is exists and how it was<br />
better than developing a closed-source product. According to Russell Pavlicek in<br />
Embracing Insanity, there are four key benefits from the term Open Source.<br />
1. Open Source emphasizes quality.<br />
2. Open Source stresses flexibility.<br />
3. Open Source decreases development time.<br />
4. Closed Source is characterized ad non-competitive, rather than immoral.<br />
Whew<br />
This whirlwind tour of Open Source should give you a good start into<br />
understanding its existence. If you would like to learn more, turn to the resources of this<br />
paper for a list of the best print and web materials out there. Now that you have this base<br />
knowledge, you should be able to apply its basic belief structure to education. As you<br />
will see, there are many benefits of Open Source for education.<br />
So What Does This Mean For Educators?<br />
Now that you have a little background in Open Source, you may be able to think<br />
of ways it can be used in schools. There are many issues facing educators who want to<br />
use technology and I feel that many of them can be addressed by using Open Source.<br />
Just so it is clear, I am not suggesting that Open Source is a silver bullet or that it is right<br />
to use in every situation. I am just pointing out that it should, at least, be a consideration<br />
when making any decisions about technology that can effect schools or the community.<br />
Let’s now look at some of these issues and explore the effects Open Source can have on<br />
them.<br />
Lack of Money<br />
This is probably the biggest problem facing schools today. The current system for<br />
funding schools is just not working well. The reliance on local taxes is always causing<br />
huge budget cuts and technology is usually one of the first areas effected. A school can<br />
save a huge amount of money by using Open Source.<br />
The high cost of licensing software is the main issue at hand. One of the most<br />
licensed products in schools is Microsoft’s Office Suite. The normal version goes for<br />
$497 per license, as of May 2003. Teachers and students get a discount though, at $149<br />
per license. At first look, this might seem like a deal. The only problem is that you still<br />
have to pay that price for every computer you put it on. Well, technically, you could put<br />
it on more than one computer, but that would be illegal. Let’s say a small K-5 school has<br />
a total of 20 computers. To get Microsoft Office on them they would have to pay $2980<br />
(not including taxes). To a small school this can be a heavy blow to the school budget,<br />
let alone any technology budget they may have. One also has to take into account the<br />
price of upgrading when a new version comes out as well. Another issue is the license<br />
itself, which if you read will tell you that you have almost no right using the software. It<br />
makes very clear that you do not own the software but are buying the privilege to use it. I<br />
could list many other products that charge exorbitant licensing fees, but I think you get<br />
the idea. If schools were to consider Open Source they might think twice before<br />
spending money on a closed-source solution.<br />
There are many programs in the Open Source world that are designed to be office<br />
applications. One of most popular and most powerful is OpenOffice. It is a full fledge<br />
office suite from OpenOffice.org. It includes full-featured word processing, spreadsheet,<br />
and presentation applications that can do the same thing that its Microsoft counterparts<br />
can. It also has support for other file types, which means it works seamlessly with Word,<br />
Excel and others. OpenOffice is certified Open Source and is free to download from<br />
www.openoffice.org. It also works on all major platforms including Windows, Mac OS<br />
X, and Linux. There are no licensing fees nor support fees. The only price you pay is for<br />
the Internet connection to download it or you could even spend five dollars to have a CD-<br />
ROM sent to you.<br />
The Open Source world is full of these types of alternatives. Most of the big ones<br />
do not even require you to be using Linux. I will discuss some these other Open Source<br />
projects a little later on. It is clear with Open Source, schools can more wisely spend<br />
their money while remaining current with technology. Whether rich or poor, every<br />
school system should at least look into using Open Source, if only to spend taxpayer’s<br />
money more responsibly.<br />
Lower Cost Equals Better Spent Money<br />
As you have seen, Open Source can save schools thousands of dollars. Where<br />
should this money go? If you are an educator, I am sure you could create a list of at least<br />
a hundred places.<br />
Staying with technology, the money could go to buy even more computers. This<br />
would give schools a chance to bring the ratio of computer to student down. Then maybe<br />
schools would be able to get away from having only one central lab. Technology should<br />
be integrated into the curriculum and having to sign up for lab time makes this difficult.<br />
Teachers should have the opportunity to have the tools they need at their fingertips.<br />
The money could also be spent on staff development in using the technology.<br />
Training is usually the first thing to go in a technology budget. It is my personal belief<br />
that fifty percent of a technology budget should be spent on training. Most of the time<br />
schools figure they should get as many computers and as much other “stuff” as possible.<br />
To these schools, staff development is seen as an extra. A school can spend a million<br />
dollars on the latest and greatest technology, but it is worth nothing if the teachers do not<br />
know how to use it and more importantly how to integrate it into their curriculums.<br />
While time is still an issue with training, money no longer has to be.<br />
The money could also go into paying teachers more. It wouldn’t be much spread<br />
across a whole school, but it is something. There are schools in the United States that are<br />
turning their savings into teacher salaries. In the United States, the average new teacher<br />
is receiving $27,989 (EAN, 2000). There are avenues to raise this level and Open Source<br />
is one of them.<br />
The Digital Divide<br />
The digital divide is a problem facing schools and society. For those without a<br />
knowledge of this phenomenon, here is a great definition from whatis.com.<br />
The term &#8216;digital divide&#8217; describes the fact that the world can be divided<br />
into people who do and people who don&#8217;t have access to &#8211; and the<br />
capability to use &#8211; modern information technology, such as the telephone,<br />
television, or the Internet. The digital divide exists between those in cities<br />
and those in rural areas. For example, a 1999 study showed that 86% of<br />
Internet delivery was to the 20 largest cities. The digital divide also exists<br />
between the educated and the uneducated, between economic classes, and,<br />
globally, between the more and less industrially developed nations.<br />
Educators need to be aware of this when they use technology. One of the major reasons<br />
schools do not have equal access to technology is lack of funds. The lower cost of Open<br />
Source does a lot to bridge this gap.<br />
Schools that are on the poorer side can use Open Source to get access to<br />
technologies that would be impossible using the usual routes. Buying computer parts,<br />
putting them together, then installing Linux can cost as low as $200. A comparable<br />
computer through a vendor would cost around $900. A school that might think it can’t<br />
afford anything, when taught about Open Source, might reassess their budget. A school<br />
that takes this approach can and should also be a center for getting this word out to the<br />
community. Low-income families might realize that they can afford a computer when<br />
going this route and use the school as a support. Looking at these possibilities, Open<br />
Source is most likely the best weapon we have against the digital divide.<br />
Technology Support<br />
One misconception about Open Source, it is that there is a lack of support for<br />
products. This could not be further from the truth. Closed-source solutions usually have<br />
a line of support that they either provide for free or more likely charge for. A lot of the<br />
bigger Open Source projects also sell support, but the best support solution is usually the<br />
Internet.<br />
Since it is in Open Source’s nature to have every facet of the project shared,<br />
support is also for free. This support could either come from the developers themselves<br />
or just other people using the product. Chances are that if you have a problem, someone<br />
else has had it before you and their solution is out there. If you are missing a file, a<br />
simple Google search will most likely return its location. The Open Source community is<br />
full of listservs, mailing lists, and web sites devoted to supporting users. Linus Torvalds,<br />
when he was developing Linux, was often known to release a fix within hours when<br />
made aware of a problem. The community has only gotten more supportive in the years<br />
since then. Justlinux.com is a forum-based site designed to give beginners and advanced<br />
users a place to give and get support. A post on one of the forums can return an answer<br />
within minutes. If one does just a little bit of research and finds these places, they will<br />
have many times more support than they would through a closed-source vendor.<br />
Open Source Technologies<br />
It is clear that the Open Source community has a lot to offer educators. There are<br />
thousands of projects that are currently being used in schools and many more that could<br />
be. Below is an overview of just a few of the Open Source projects that educators may<br />
be concerned with.<br />
Linux<br />
Linux is an obvious Open Source solution for educators. It is free and can be<br />
easily installed on almost any computer. Red Hat Linux is the most popular distribution<br />
(version) of Linux in the United States. It offers ease of set-up, use, and maintenance.<br />
Another popular distribution is Yellow Dog Linux. It is based on Red Hat and made to<br />
run on Apple computers. Both of these methods can be used to breathe new life into an<br />
old computer. Linux has a reputation of running very well on older machines. This is<br />
good news for schools since a lot of the time they have older equipment.<br />
OpenOffice.org<br />
As discussed earlier, OpenOffice is a great alternative to Microsoft Office. It runs<br />
on all major platforms and is free monetarily and liberty wise. There are almost no<br />
excuses for a school to spend money on MS Office when this alternative is available.<br />
There are also other Office solutions as well. Koffice and AbiWord are two that are also<br />
popular among the Open Source community.<br />
The Gimp<br />
The Gimp is an image manipulation tool. It is an Open Source counterpart to<br />
Adobe Photoshop. This popular tool has been rapidly gaining features and support in the<br />
last year. It is as powerful as Photoshop and some say even more so. As of this writing<br />
the current price for a single copy of Photoshop is $609. That is a lot to swallow for a<br />
school system on a tight budget. There is no reason they have to if they knew about the<br />
Gimp.<br />
Darwin<br />
In 1999, Apple computer was the first major computer manufacturer to build its<br />
future around Open Source technologies. Darwin is the core Unix base of OS X. It is<br />
Open Source and freely available. Apple realized the benefits of Open Source and now<br />
have claim to the highest user base of any Unix based operating system.<br />
Fink<br />
Since Apple’s OS X is a Unix based operating, it makes running pure Unix<br />
applications relatively pain free. Fink is a package management tool that allows a user to<br />
install these Open Source programs on a computer running OS X. With this tool schools<br />
running OS X have access to thousands of Open Source programs such as OpenOffice<br />
and the Gimp.<br />
Apache<br />
Apache is most widely known as an http server, which takes care of hosting web<br />
sites. It was created by a few hobbyists who were not happy with the closed-source<br />
solutions available. They started “patching” (hence the name) a program together to fill<br />
their needs. Long story short, as of May 2003, Apache serves 63% of all Internet web<br />
pages. (Netcraft Web Server Survey, 2003)<br />
This is a very incomplete list as there are thousands of Open Source projects<br />
available. To find an Open Source project that fits your needs, visit some of the sites<br />
listed in the resource section of this paper.<br />
Conclusion<br />
By now you should be able to see the implications of using Open Source in<br />
schools. It cannot only save money, but it also provide an avenue to the latest in<br />
technology. The community behind Open Source is concerned with creating the best<br />
products possible and they do it for fun. This method of development brings out the<br />
importance of the program, rather than the money that can be made off of it.<br />
One of the most common arguments against Open Source in education is “In the<br />
real world my child is going to need to know Microsoft Word (insert any closed-source<br />
program here) so that is what they should be learning.” At first glance this seems like a<br />
valid argument, but upon further though, it doesn’t align itself with good teaching<br />
practices. It is far better to teach the concepts behind word processing than it is to teach a<br />
particular program. Spell checking, cutting and pasting, margins, and tabs are all<br />
concepts are implemented in all word processors. When a child is taught the concept<br />
behind these, they will be able to adapt to new programs when they come along. For<br />
example, learning to use Linux will only help a student get better at Windows and vice<br />
versa.<br />
Schools can benefit from Open Source in so many ways, it is hard to see why<br />
more aren’t using it. The main reason behind this is lack of knowledge about Open<br />
Sources. Most people do not even know what it is. I hope this paper has done its part to<br />
introducing those people to Open Source and its possibilities.</p>
<p>Resources<br />
Works Cited<br />
Columbus Networks Corporation. Starring Teacher Salaries in Each State. Retrieved<br />
May, 01, 2003, from http://www.aft.org/press/2001/download/111-1.pdf.<br />
Netcraft. May 2003 Web Server Survey. Retrieved May, 01, 2003, from<br />
http://news.netcraft.com/.<br />
Pavlicek, Russell C. Embracing Insanity. Indianapolis, IN: Sams, 2000.<br />
TechTarget. Digital Divide definition. Retrieved May, 01, 2003, from<br />
http://whatis.techtarget.com/definition/0,,sid9_gci214062,00.html.<br />
Torvalds, Linus., and David Diamond. Just for Fun: The Story of an Accidental<br />
Revolutionary. New York: HarperCollins, 2001.<br />
Books on Open Source<br />
DiBona, Chris., Sam Ockman and Mark Stone. Ed. Open Sources: Voices from the Open<br />
Source Revolution. Sebastopol, CA: O’Reilly and Associates, Inc., 1999.<br />
A collection of essays from some of the most important people in Open Source<br />
today.<br />
Negus, Christopher. Red Hat Linux 8 Bible. Indianapolis, IN: Wiley Publishing, Inc,<br />
2002.<br />
One of the many “Bible” books out there and it is very well written. It covers<br />
everything you need to know to get up and running and then some. It starts off<br />
Open Source in Education 22<br />
with how to install Linux and ends up showing how to set up DNS servers and<br />
such.<br />
Feller, Joseph., and Brian Fitzgerald. Understanding Open Source Software<br />
Development. Harlow, England: Pearson Education Limited, 2002.<br />
A great book to start with. It explains the process and theory behind Open Source<br />
in non-technical language. It gives a basic introduction and will give the reader<br />
enough information get going in Open Source.<br />
Pavlicek, Russell C. Embracing Insanity. Indianapolis, IN: Sams, 2000.<br />
Another introductory book that is a little more on the technical side. It includes<br />
explanations of licenses and different resources available.<br />
Raymond, Eric S. The Cathedral and the Bazaar. Sebastopol, CA: O’Reilly and<br />
Associates, Inc., 2001.<br />
Includes a number of essays by Eric Raymond. He is pretty much the philosopher<br />
of the Open Source world. His paper “The Cathedral and the Bazaar” was a<br />
landmark in the world of Open Source.<br />
Raymond, Eric S., ed. The New Hacker’s Dictionary. Cambridge, MA: The MIT Press,<br />
1998.<br />
A dictionary of terms that is popular in the computer world.<br />
Open Source in Education 23<br />
Taylor, Dave and Jerry Peek. Learning Unix for Mac OS X. Sebastopol, CA: O’Reilly<br />
and Associates, Inc., 2002.<br />
The purpose of this book is to teach people who are familiar with OS X about its<br />
Unix base. It is a good introduction, and the information gained is transferable to<br />
other Unix based OSs.<br />
Torvalds, Linus and David Diamond. Just for Fun: The Story of an Accidental<br />
Revolutionary. New York: HarperCollins, 2001.<br />
The story of Linus Torvalds and his Linux kernel that is changing the way we<br />
compute.<br />
Williams, Sam. Free as in Freedom. Sebastopol, CA: O’Reilly and Associates, Inc., 2002.<br />
The story of Richard Stallman and how he came to create the GPL and Free<br />
Software Foundation.<br />
Web Sites on Open Source (in no particular order)<br />
Free Software Foundation (http://www.fsf.org)<br />
The home of the free software foundation.<br />
The KDE Edutainment Project (http://edu.kde.org/)<br />
The software that KDE is creating for education and descriptions of all of them.<br />
Open Source in Education 24<br />
Open Source Initiative (http://www.opensource.org/)<br />
A non-profit corporation founded by Eric Raymond to promote Open Source<br />
through OSI certification.<br />
Linuxiso.org (http://www.linuxiso.org)<br />
A site designed to bring the best Linux distributions in the world to one place. It<br />
also contains a lot of information about what Linux is.<br />
Linux.com (http://www.linux.org<br />
A site aiming to teach the masses about Linux.<br />
Freshmeat (http://www.freshmeat.net)<br />
A site that hosts many Open Source projects for different platforms.<br />
K – 12 Linux (http://www.k12linux.org/)<br />
A collection of 3 sites that aim to help educators deploy Linux in schools.<br />
Contains information of how to buy computers and how to install software.<br />
Just Linux (http://www.justlinux.com/)<br />
A site devoted to helping people figure out the problems. Great site for newbies.<br />
Slashdot (http://www.slashdot.org)<br />
The “water cooler of geek culture.” A site where news and posting about all<br />
things geek can be found. It is a great place for understanding the Open Source<br />
culture.<br />
Schoolforge (http://schoolforge.net)<br />
Schoolforge is a cause for getting open source into schools. People making sites<br />
or software for education through open source means, usually join schoolforge to<br />
show that they are serious about creating good software for the right reasons.<br />
Open Source Schools (http://opensourceschools.org/)<br />
A news and reference site for educators interested in Open Source in schools. A<br />
subsite of schoolforge.<br />
SEUL/EDU (http://www.seul.org/edu/)<br />
Simple End User Linux/edu is a site dedicated to furthering the use of Linux in an<br />
educational setting.<br />
Sorceforge (http://sourceforge.net/)<br />
The self-proclaimed worlds largest repository of Open Source code and<br />
applications.<br />
Dr. Dobb’s Tech Net Cast (http://technetcast.ddj.com/)<br />
A great site containing tons of net casts concerning technology. It is a great place<br />
to learn about Open Source (and other technology topics) from the people who are<br />
speaking out about it.<br />
Netcraft (http://news.netcraft.com)<br />
Netcraft is a company that collects web statistics and reports them to the world.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jomyr.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jomyr.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jomyr.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jomyr.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jomyr.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jomyr.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jomyr.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jomyr.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jomyr.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jomyr.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jomyr.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jomyr.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=18&subd=jomyr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jomyr.wordpress.com/2007/08/08/for-educators-who-dont-know-what-is-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f099bd7ad6c6875ba1572e0f4a8339d2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">---==_d@rk_@ngel_==---</media:title>
		</media:content>
	</item>
		<item>
		<title>Finally &#8211; Linus Torvalds Responds To Microsoft Patent Claims!</title>
		<link>http://jomyr.wordpress.com/2007/06/06/finally-linus-torvalds-responds-to-microsoft-patent-claims/</link>
		<comments>http://jomyr.wordpress.com/2007/06/06/finally-linus-torvalds-responds-to-microsoft-patent-claims/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 01:26:44 +0000</pubDate>
		<dc:creator>JOMYR ALIPIO</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://jomyr.wordpress.com/2007/06/06/finally-linus-torvalds-responds-to-microsoft-patent-claims/</guid>
		<description><![CDATA[The holder of the Linux trademark suggests Microsoft should name the patents it alleges have been violated so the claims can be tested in court. 
Linus Torvalds, lead developer of the Linux kernel, has a sharp retort to Microsoft executives&#8217; statements in a Fortune magazine article that Linux and other open-source code violate 235 Microsoft patents.
&#8220;It&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=16&subd=jomyr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>The holder of the Linux trademark suggests Microsoft should name the patents it alleges have been violated so the claims can be tested in court. </strong></p>
<p>Linus Torvalds, lead developer of the Linux kernel, has a sharp retort to Microsoft executives&#8217; statements in a <em>Fortune</em> magazine article that Linux and other open-source code <a href="http://www.informationweek.com/news/showArticle.jhtml;?articleID=199501578">violate 235 Microsoft patents</a>.</p>
<p>&#8220;It&#8217;s certainly a lot more likely that Microsoft violates patents than Linux does,&#8221; said Torvalds, holder of the Linux trademark. If the source code for Windows could be subjected to the same critical review that Linux has been, Microsoft would find itself in violation of patents held by other companies, said Torvalds.</p>
<p>&#8220;Basic operating system theory was pretty much done by the end of the 1960s. IBM probably owned thousands of really &#8216;fundamental&#8217; patents,&#8221; Torvalds said in a response to questions submitted by <em>InformationWeek</em>. But he doesn&#8217;t like any form of patent saber rattling. &#8220;The fundamental stuff was done about half a century ago and has long, long since lost any patent protection,&#8221; he wrote.</p>
<p>Microsoft should name the patents that it claims have been violated so the claims can be tested in court or so open-source developers can rewrite code to avoid the violation, Torvalds wrote.</p>
<p>&#8220;Naming them would make it either clear that Linux isn&#8217;t infringing at all (which is quite possible, especially if the patents are bad), or would make it possible to avoid infringing by coding around whatever silly thing they claim,&#8221; he said.</p>
<p>&#8220;So the whole, &#8216;We have a list and we&#8217;re not telling you,&#8217; itself should tell you something,&#8221; Torvalds said of Microsoft&#8217;s stance in the <em>Fortune</em> story. And for good measure, he added: &#8220;Don&#8217;t you think that if Microsoft actually had some really foolproof patent, they&#8217;d just tell us and go, &#8216;nyaah, nyaah, nyaah!&#8217;&#8221;</p>
<p>Microsoft would <a href="http://www.informationweek.com/news/showArticle.jhtml;?articleID=199501831">prefer not to actually sue anyone</a>, particularly a Linux user who&#8217;s also a Microsoft customer. &#8220;They&#8217;d have to name the patents then, and they&#8217;re probably happier with the FUD [fear, uncertainty, doubt] than with any lawsuit,&#8221; Torvalds predicted.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jomyr.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jomyr.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jomyr.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jomyr.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jomyr.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jomyr.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jomyr.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jomyr.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jomyr.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jomyr.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jomyr.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jomyr.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=16&subd=jomyr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jomyr.wordpress.com/2007/06/06/finally-linus-torvalds-responds-to-microsoft-patent-claims/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f099bd7ad6c6875ba1572e0f4a8339d2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">---==_d@rk_@ngel_==---</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft goes Open Source? &#8211; Desperate Company?</title>
		<link>http://jomyr.wordpress.com/2007/05/02/microsoft-goes-open-source-desperate-company/</link>
		<comments>http://jomyr.wordpress.com/2007/05/02/microsoft-goes-open-source-desperate-company/#comments</comments>
		<pubDate>Wed, 02 May 2007 06:03:07 +0000</pubDate>
		<dc:creator>JOMYR ALIPIO</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://jomyr.wordpress.com/2007/05/02/microsoft-goes-open-source-desperate-company/</guid>
		<description><![CDATA[Microsoft is expected to show a new friendliness to the open-source community by unveiling plans to release the source code to a part of its Silverlight technology at MIX 07 next week, according to sources familiar with the company&#8217;s plans.
Sources said Microsoft will also release a beta of Silverlight, a recently unveiled browser plug-in that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=15&subd=jomyr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Microsoft is expected to show a new friendliness to the open-source community by unveiling plans to release the source code to a part of its Silverlight technology at MIX 07 next week, according to sources familiar with the company&#8217;s plans.</p>
<p>Sources said Microsoft will also release a beta of Silverlight, a <a href="http://www.pcworld.com/article/id,130744/article.html">recently unveiled browser plug-in</a> that allows Web content providers to offer a rich video and interactive media experience from directly within Web sites. The technology leverages Vista&#8217;s new graphics framework, Windows Presentation Foundation (WPF), and Microsoft is promoting it as a direct competitor to Adobe Systems&#8217; Flash tool and delivery mechanism for rich multimedia content on the Web.</p>
<p>Specifics on which aspect of Silverlight will be open-sourced were not available, and Microsoft&#8217;s public relations firm declined to comment Friday.</p>
<h2 class="artSubtitle">Aiming for Adobe</h2>
<p>The final version of Microsoft&#8217;s Expression toolset for building rich Internet applications (RIAs) also may make an appearance at MIX 07, according to sources, though Microsoft has two more months to work on the tool according to its schedule. The company has said Expression, another product it hopes will woo RIA designers away from Adobe, will be available before the end of June.</p>
<p>Microsoft is pitting Expression as an alternative to Adobe&#8217;s recently released <a href="http://www.pcworld.com/article/id,128728/article.html">Creative Suite 3</a>, and the toolset is also key to Silverlight because the company hopes designers will use it to create applications to be delivered through Silverlight.</p>
<p>Microsoft&#8217;s rather unconventional move to embrace the open-source community could be a response to Adobe Systems&#8217; announcement earlier this week that it will open-source the SDK for its Flex RIA development environment by the end of the year.</p>
<p>Adobe has a multiyear headstart on Microsoft in luring developers to its RIA tools, and open-sourcing components of Flex should grow that base, users have said. Microsoft likely sees a need to <a href="http://blogs.pcworld.com/staffblog/archives/004137.html" target="_blank">lure developers to Silverlight</a> as quickly as it can if it wants to catch up to Adobe.</p>
<p>Microsoft hosted its first MIX show last year as an appeal to Web designers and developers of RIAs, an audience whose respect the company has yet to win. Microsoft has made several stops and starts in offering Web authoring and design tools over the years, but the company has had far more success among developers building desktop applications because of its Windows and Office products.</p>
<h2 class="artSubtitle">Tough Market</h2>
<p>Keith Cutcliffe, IT developer and analyst for ProAssurance in Birmingham, Alabama, said he has reviewed tools in the Expression suite, and from what he&#8217;s seen it&#8217;s a solid product. &#8220;However, I stand by my belief that Microsoft just doesn&#8217;t know how to appeal to the designer crowd,&#8221; he said. Cutcliffe attended MIX in its inaugural year, but is not attending next week.</p>
<p>Strategically, Microsoft is trying to make the necessary leap to the Web as a platform for developing applications to compete not only with companies such as Adobe, but also Web services companies like Google and Yahoo. It&#8217;s important for the vendor to make inroads with developers using the most cutting-edge Web and multimedia design technologies, Cutcliffe said.</p>
<p>Adobe isn&#8217;t the only competitor Microsoft had to contend with on the RIA front. A small company in Silicon Valley called Laszlo Systems also has a sophisticated tool for building RIAs, and already has made available an open-source version of it, OpenLaszlo, which lets developers build both Flash- and Ajax-based applications.</p>
<p>David Temkin, founder and CTO, of Laszlo Systems, said Microsoft&#8217;s interest and entry into the RIA space is good for competitors, because it should stir up interest in related products.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jomyr.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jomyr.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jomyr.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jomyr.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jomyr.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jomyr.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jomyr.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jomyr.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jomyr.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jomyr.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jomyr.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jomyr.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=15&subd=jomyr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jomyr.wordpress.com/2007/05/02/microsoft-goes-open-source-desperate-company/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f099bd7ad6c6875ba1572e0f4a8339d2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">---==_d@rk_@ngel_==---</media:title>
		</media:content>
	</item>
		<item>
		<title>Vista In Trouble?</title>
		<link>http://jomyr.wordpress.com/2007/04/24/vista-in-trouble/</link>
		<comments>http://jomyr.wordpress.com/2007/04/24/vista-in-trouble/#comments</comments>
		<pubDate>Tue, 24 Apr 2007 07:08:04 +0000</pubDate>
		<dc:creator>JOMYR ALIPIO</dc:creator>
				<category><![CDATA[Operating Systems]]></category>

		<guid isPermaLink="false">http://jomyr.wordpress.com/2007/04/24/vista-in-trouble/</guid>
		<description><![CDATA[ 					 Dell has announce that they are again offering their consumers computers with XP, instead of Vista. Recent results of polls from their IdeaStorm project revealed that their consumers voted for XP to be bundled with Dell’s computers, although not as high as the votes gathered by Linux and OpenOffice to be added to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=13&subd=jomyr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> 					<span class="date_day"></span><span class="date_month"></span><span class="date_year"></span> Dell has announce that they are again offering their consumers computers with XP, instead of Vista. Recent results of polls from their <a href="http://news.com.com/Dell+takes+small+steps+toward+Linux/2100-1003_3-6162164.html">IdeaStorm</a> project revealed that their consumers voted for XP to be bundled with Dell’s computers, although not as high as the votes gathered by Linux and OpenOffice to be added to their PCs.</p>
<p>Microsoft announced earlier that except for system builders (smaller computer sellers who will be able to sell XP for another year) , XP sales will be stopped. Which is just another way of saying, “buy our new, overpriced OS because that’s the only choice we’re giving you.” By mid-February, <a href="http://news.com.com/Limited+choices+for+Windows+XP+holdouts/2100-1016_3-6161250.html">XP computers were all but gone</a> from store shelves.</p>
<p>But Dell is clearly not a small computer seller, and you can be sure that other big computer sellers will be moving to appease their consumers as well.</p>
<p>“That there is remaining demand from some segment of (the) consumer market points to the inability of Vista to resonate with consumers,” IDC analyst <a href="http://www.idc.com/getdoc.jsp?containerId=PRF002453">Richard Shim</a> said.</p>
<p>Current Analysis research director Samir Bhavnani <a href="http://news.com.com/Dell+brings+back+XP+on+home+systems/2100-1046_3-6177619.html">blamed low Vista sales on lack of marketing,</a> noting that he sees more Apple ads than Vista ads. I have two opinions on this matter. First, can you really blame lack of ads? The hype and anticipation for Vista has been around for a long time, causing me to believe that marketing reach of Vista is not as insignificant as Bhavnani states. Secondly, the lack of marketing on the part of Vista seems to be a sign of arrogance for me. Does Microsoft really think of themselves so high that they didn’t need to market their product?</p>
<p>On my side of the globe, Microsoft recently launched their $3 Windows-Office bundles in China. In a country where the average income is $100/month, nobody’s going to buy a $200 operating system, especially since at $200 Vista starter has just the very basic features to get you by. And they’re definitely not going to pay $250 or more just to get Aero. In first world countries, people are crying foul and are demanding that the $3 Windows-Office bundles also be offered to students. And some view this move as <a href="http://blogs.zdnet.com/Ou/?p=473">first-world countries subsidizing third-world users</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jomyr.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jomyr.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jomyr.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jomyr.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jomyr.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jomyr.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jomyr.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jomyr.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jomyr.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jomyr.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jomyr.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jomyr.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=13&subd=jomyr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jomyr.wordpress.com/2007/04/24/vista-in-trouble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f099bd7ad6c6875ba1572e0f4a8339d2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">---==_d@rk_@ngel_==---</media:title>
		</media:content>
	</item>
		<item>
		<title>Philippine Bayanihan Linux 4</title>
		<link>http://jomyr.wordpress.com/2007/04/13/philippine-bayanihan-linux-4/</link>
		<comments>http://jomyr.wordpress.com/2007/04/13/philippine-bayanihan-linux-4/#comments</comments>
		<pubDate>Fri, 13 Apr 2007 11:00:14 +0000</pubDate>
		<dc:creator>JOMYR ALIPIO</dc:creator>
				<category><![CDATA[Operating Systems]]></category>

		<guid isPermaLink="false">http://jomyr.wordpress.com/2007/04/13/philippine-bayanihan-linux-4/</guid>
		<description><![CDATA[The fourth version of Bayanihan Linux, a Filipino-based desktop system, comes out with new productivity tools, multimedia applications, and a lot more!
Quezon City – March 26, 2007 – Advanced Science and Technology Institute &#8211; DOST, After months of continuous development and rigorous testing, the team announces the release of the latest version of the Bayanihan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=11&subd=jomyr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span class="postbody"><span style="font-weight:bold;">The fourth version of Bayanihan Linux, a Filipino-based desktop system, comes out with new productivity tools, multimedia applications, and a lot more!</span></p>
<p><span style="font-style:italic;">Quezon City – March 26, 2007 – Advanced Science and Technology Institute &#8211; DOST, After months of continuous development and rigorous testing, the team announces the release of the latest version of the Bayanihan Linux distribution. Download your copy now from <a href="http://www.bayanihan.gov.ph./" target="_blank" class="postlink">www.bayanihan.gov.ph.</a></span></p>
<p>Bayanihan Linux&#8230;</p>
<p>&#8230;is a complete desktop solution<br />
It&#8217;s a complete desktop in just one CD!<br />
Installation is point and click.<br />
Lots of applications are built in, and thousands more are available online for free to add power to your desktop!<br />
Local Support is provided by the Bayanihan Team.</p>
<p>&#8230;comes Internet-ready with antivirus support<br />
Whether you&#8217;re surfing the Internet, sending email or instant messages to your friends and family, do it safely and securely with Bayanihan Linux!<br />
Keep your system secure the fast and easy way with the built-in antivirus software.</p>
<p>&#8230;has excellent support for mobile computing<br />
Laptop-ready with support for various wireless devices allows you to connect even when you&#8217;re not in the office.<br />
Instantly use your removable devices. Just plug them in &#8212; it&#8217;s that simple!</p>
<p>&#8230;offers extensive multimedia and graphics applications<br />
Do more with Bayanihan Linux! Listen to your favorite music and watch movies.<br />
Save all your important data to CD&#8217;s or DVD&#8217;s.<br />
Release the artist in you with the creativity tools we&#8217;ve included. You can even create your own 3D animated movie!</p>
<p>&#8230;includes an integrated full-featured office suite<br />
Get your job done easily using the built-in word processor, spreadsheet software and tons of other office applications!</p>
<p>For more information please visit <a href="http://www.bayanihan.gov.ph./" target="_blank">http://www.bayanihan.gov.ph.</a></p>
<p>About Advanced Science and Technology Institute</p>
<p>The Advanced Science and Technology Institute (ASTI) is a research and development agency under the Department of Science and Technology (DoST). It is mandated to conduct scientific research and development in the advanced fields of Information and Communications Technology (ICT) and Microelectronics. Please visit <a href="http://www.asti.dost.gov.ph/" target="_blank">http://www.asti.dost.gov.ph/</a> for more information.</span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jomyr.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jomyr.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jomyr.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jomyr.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jomyr.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jomyr.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jomyr.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jomyr.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jomyr.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jomyr.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jomyr.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jomyr.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=11&subd=jomyr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jomyr.wordpress.com/2007/04/13/philippine-bayanihan-linux-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f099bd7ad6c6875ba1572e0f4a8339d2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">---==_d@rk_@ngel_==---</media:title>
		</media:content>
	</item>
		<item>
		<title>Lists of Operating Systems</title>
		<link>http://jomyr.wordpress.com/2007/04/13/lists-of-operating-systems/</link>
		<comments>http://jomyr.wordpress.com/2007/04/13/lists-of-operating-systems/#comments</comments>
		<pubDate>Fri, 13 Apr 2007 10:20:08 +0000</pubDate>
		<dc:creator>JOMYR ALIPIO</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://jomyr.wordpress.com/2007/04/13/lists-of-operating-systems/</guid>
		<description><![CDATA[TROUBLESHOOTINGCommon                     questions and answers to operating systems in general can be                     found on the below [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=10&subd=jomyr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a name="04"></a><font color="#005cb9"><strong>TROUBLESHOOTING</strong></font>Common                     questions and answers to operating systems in general can be                     found on the <a href="http://www.computerhope.com/os.htm#05">below operating system question                     and answers</a>. All other questions relating to an                     operating system in particular                     can be found through the operating system page.</p>
<blockquote><p><a href="http://www.computerhope.com/unix.htm">Linux /                     Variants<br />
</a><a href="http://www.computerhope.com/macos.htm">MacOS</a><big><br />
</big><a href="http://www.computerhope.com/msdos.htm">MS-DOS<br />
</a><a href="http://www.computerhope.com/jargon/o/os2.htm">IBM OS/2 Warp<br />
</a><a href="http://www.computerhope.com/unix.htm">Unix / Variants</a><big><br />
</big><a href="http://www.computerhope.com/wince.htm">Windows CE</a><big><br />
</big><a href="http://www.computerhope.com/win3x.htm">Windows 3.x</a><big><br />
</big><a href="http://www.computerhope.com/win95.htm">Windows 95</a><big><br />
</big><a href="http://www.computerhope.com/win98.htm">Windows 98<br />
</a><a href="http://www.computerhope.com/win98.htm">Windows 98 SE<br />
</a><a href="http://www.computerhope.com/winme.htm">Windows ME<big>                     </big></a><big><br />
</big><a href="http://www.computerhope.com/winnt.htm">Windows NT</a><br />
<a href="http://www.computerhope.com/win2000.htm">Windows 2000<br />
</a><a href="http://www.computerhope.com/winxp.htm">Windows XP</a><br />
<a href="http://www.computerhope.com/software/vista.htm">Windows Vista</a></p>
</blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jomyr.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jomyr.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jomyr.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jomyr.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jomyr.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jomyr.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jomyr.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jomyr.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jomyr.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jomyr.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jomyr.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jomyr.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=10&subd=jomyr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jomyr.wordpress.com/2007/04/13/lists-of-operating-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f099bd7ad6c6875ba1572e0f4a8339d2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">---==_d@rk_@ngel_==---</media:title>
		</media:content>
	</item>
		<item>
		<title>Linus Benedict Torvalds- &#8220;The man behind Linux&#8221;</title>
		<link>http://jomyr.wordpress.com/2007/03/21/linus-benedict-torvalds-the-man-behind-linux/</link>
		<comments>http://jomyr.wordpress.com/2007/03/21/linus-benedict-torvalds-the-man-behind-linux/#comments</comments>
		<pubDate>Wed, 21 Mar 2007 01:55:19 +0000</pubDate>
		<dc:creator>JOMYR ALIPIO</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://jomyr.wordpress.com/2007/03/21/linus-benedict-torvalds-the-man-behind-linux/</guid>
		<description><![CDATA[Linus Benedict Torvalds (pronunciation (help·info); born December 28, 1969 in Helsinki, Finland) is a Finnish software engineer best known for initiating the development of the Linux kernel. He now acts as the project&#8217;s coordinator.
Linus was inspired by Minix (an operating system developed by Andrew S. Tanenbaum) to develop a capable Unix-like operating system that could [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=5&subd=jomyr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://jomyr.files.wordpress.com/2007/03/220px-linus_torvalds.jpeg" title="Linux Torvalds"><img src="http://jomyr.files.wordpress.com/2007/03/220px-linus_torvalds.jpeg" alt="Linux Torvalds" /></a><strong>Linus Benedict Torvalds</strong> (<span class="unicode audiolink"><a href="http://upload.wikimedia.org/wikipedia/commons/2/23/Sv-Linus_Torvalds.ogg" class="internal" title="Sv-Linus Torvalds.ogg">pronunciation</a></span> <span class="metadata audiolinkinfo">(<a href="http://en.wikipedia.org/wiki/Wikipedia:Media_help" title="Media help">help</a>·<a href="http://en.wikipedia.org/wiki/Image:Sv-Linus_Torvalds.ogg" title="Sv-Linus Torvalds.ogg">info</a>)</span>; born <a href="http://en.wikipedia.org/wiki/December_28" title="December 28">December 28</a>, <a href="http://en.wikipedia.org/wiki/1969" title="1969">1969</a> in <a href="http://en.wikipedia.org/wiki/Helsinki" title="Helsinki">Helsinki</a>, <a href="http://en.wikipedia.org/wiki/Finland" title="Finland">Finland</a>) is a <a href="http://en.wikipedia.org/wiki/Finnish_people" title="Finnish people">Finnish</a> <a href="http://en.wikipedia.org/wiki/Software_engineering" title="Software engineering">software engineer</a> best known for initiating the development of the <a href="http://en.wikipedia.org/wiki/Linux_kernel" title="Linux kernel">Linux kernel</a>. He now acts as the project&#8217;s coordinator.</p>
<p>Linus was inspired by <a href="http://en.wikipedia.org/wiki/Minix" title="Minix">Minix</a> (an operating system developed by <a href="http://en.wikipedia.org/wiki/Andrew_S._Tanenbaum" title="Andrew S. Tanenbaum">Andrew S. Tanenbaum</a>) to develop a capable <a href="http://en.wikipedia.org/wiki/Unix-like" title="Unix-like">Unix-like</a> operating system that could be run on a <a href="http://en.wikipedia.org/wiki/Personal_computer" title="Personal computer">PC</a>. <a href="http://en.wikipedia.org/wiki/Linux" title="Linux">Linux</a> now also runs on many other <a href="http://en.wikipedia.org/wiki/Computer_architecture" title="Computer architecture">architectures</a>.</p>
<h2><span class="mw-headline">Early years</span></h2>
<p>Linus was born in Helsinki, Finland, the son of journalists Anna and <a href="http://en.wikipedia.org/wiki/Nils_Torvalds" title="Nils Torvalds">Nils Torvalds</a>, and the grandson of poet <a href="http://en.wikipedia.org/wiki/Ole_Torvalds" title="Ole Torvalds">Ole Torvalds</a>. His family belongs to the <a href="http://en.wikipedia.org/wiki/Finland_Swedish" title="Finland Swedish">Swedish</a>-speaking minority (roughly 5%) of Finland&#8217;s population. Torvalds was named after <a href="http://en.wikipedia.org/wiki/Linus_Pauling" title="Linus Pauling">Linus Pauling</a>, the American <a href="http://en.wikipedia.org/wiki/Nobel_Prize" title="Nobel Prize">Nobel Prize</a>-winning chemist, although he prefers to claim he was named after <a href="http://en.wikipedia.org/wiki/Linus_van_Pelt" title="Linus van Pelt">Linus</a> in the <em><a href="http://en.wikipedia.org/wiki/Peanuts" title="Peanuts">Peanuts</a></em> comic strip.<sup>[<a href="http://en.wikipedia.org/wiki/Wikipedia:Citing_sources" title="Citing sources"><em><span style="white-space:nowrap;">citation needed</span></em></a>]</sup> Both of his parents were campus radicals at the <a href="http://en.wikipedia.org/wiki/University_of_Helsinki" title="University of Helsinki">University of Helsinki</a> in the 1960s.</p>
<p>Torvalds attended the University of Helsinki from 1988 to 1996, graduating with a master&#8217;s degree in <a href="http://en.wikipedia.org/wiki/Computer_science" title="Computer science">computer science</a>. His M.Sc. thesis was titled <em><a href="http://en.wikipedia.org/wiki/Linux" title="Linux">Linux</a>: A Portable Operating System</em>. From 1997 to 1999 he was involved in <a href="http://en.wikipedia.org/wiki/86open" title="86open">86open</a> helping choose the standard binary format for linux and unix.</p>
<p>His interest in computers began with a <a href="http://en.wikipedia.org/wiki/Commodore_VIC-20" title="Commodore VIC-20">Commodore VIC-20</a>. After the VIC-20 he purchased a <a href="http://en.wikipedia.org/wiki/Sinclair_QL" title="Sinclair QL">Sinclair QL</a> which he modified extensively, especially its operating system. He programmed an <a href="http://en.wikipedia.org/wiki/Assembly_language#Assembler" title="Assembly language">assembler</a> and a <a href="http://en.wikipedia.org/wiki/Text_editor" title="Text editor">text editor</a> for the QL, as well as a few games. He is known to have written a <em><a href="http://en.wikipedia.org/wiki/Pac-Man" title="Pac-Man">Pac-Man</a></em> clone named <em>Cool Man</em>. In 1990 he purchased an <a href="http://en.wikipedia.org/wiki/Intel_80386" title="Intel 80386">Intel 80386</a>-based <a href="http://en.wikipedia.org/wiki/IBM_PC" title="IBM PC">IBM PC</a> and spent a few weeks playing the game <em><a href="http://en.wikipedia.org/wiki/Prince_of_Persia" title="Prince of Persia">Prince of Persia</a></em> before receiving his <a href="http://en.wikipedia.org/wiki/Minix" title="Minix">Minix</a> copy which in turn enabled him to begin his work on Linux.</p>
<h2><span class="mw-headline">Later years</span></h2>
<p>Linus is married to Tove Torvalds (born Monni). She is a six-time Finnish national <a href="http://en.wikipedia.org/wiki/Karate" title="Karate">Karate</a> champion, whom he first met in the autumn of 1993. Linus was running introductory computer laboratory exercises for students and instructed the course attendants to send him an <a href="http://en.wikipedia.org/wiki/E-mail" title="E-mail">e-mail</a> as a test, to which Tove responded with an e-mail asking for a date. &#8220;Tove and Linus went on to have three daughters, Patricia, Miranda and Daniela.&#8221; (<a href="http://www.linux.org/info/linus.html" class="external free" title="http://www.linux.org/info/linus.html" rel="nofollow">http://www.linux.org/info/linus.html</a>) They also have a cat named Randi (short for Mithrandir, the <a href="http://en.wikipedia.org/wiki/Sindarin" title="Sindarin">Sindarin</a> name for <a href="http://en.wikipedia.org/wiki/Gandalf" title="Gandalf">Gandalf</a>, a wizard in <em><a href="http://en.wikipedia.org/wiki/The_Lord_of_the_Rings" title="The Lord of the Rings">The Lord of the Rings</a></em>).</p>
<p><a href="http://en.wikipedia.org/wiki/Red_Hat" title="Red Hat">Red Hat</a> and <a href="http://en.wikipedia.org/wiki/VA_Linux" title="VA Linux">VA Linux</a>, both leading developers of Linux-based software, presented Torvalds with <a href="http://en.wikipedia.org/wiki/Stock_option" title="Stock option">stock options</a> in gratitude for his creation. In 1999, both companies <a href="http://en.wikipedia.org/wiki/Initial_public_offering" title="Initial public offering">went public</a> and Torvalds&#8217; <a href="http://en.wikipedia.org/wiki/Net_worth" title="Net worth">net worth</a> shot up to roughly $20 million <a href="http://www.bellevuelinux.org/linus.html" class="external autonumber" title="http://www.bellevuelinux.org/linus.html" rel="nofollow">[1]</a>.</p>
<p>Torvalds moved to <a href="http://en.wikipedia.org/wiki/San_Jose%2C_California" title="San Jose, California">San Jose, California</a> and lived there for several years with his family. In June of 2004, Torvalds and his family moved to <a href="http://en.wikipedia.org/wiki/Portland%2C_Oregon" title="Portland, Oregon">Portland, Oregon</a> to be closer to Linus&#8217; place of work.</p>
<p>He worked for <a href="http://en.wikipedia.org/wiki/Transmeta" title="Transmeta">Transmeta</a> from February 1997 until June 2003, and is now seconded to the <a href="http://en.wikipedia.org/wiki/OSDL" title="OSDL">Linux Foundation</a>, a <a href="http://en.wikipedia.org/wiki/Beaverton%2C_Oregon" title="Beaverton, Oregon">Beaverton, Oregon</a> based software consortium.</p>
<p>His personal mascot is a <a href="http://en.wikipedia.org/wiki/Penguin" title="Penguin">penguin</a> nicknamed <a href="http://en.wikipedia.org/wiki/Tux" title="Tux">Tux</a>, which has been widely adopted by the Linux community as the mascot of the Linux kernel.</p>
<p>Unlike many <a href="http://en.wikipedia.org/wiki/Open_source" title="Open source">open source</a> <a href="http://en.wikipedia.org/wiki/Evangelism" title="Evangelism">evangelists</a>, Torvalds maintains a low profile and generally refuses to comment on competing software products. Torvalds generally stays out of non-kernel-related debates. He has been criticized for his neutrality by the <a href="http://en.wikipedia.org/wiki/Free_software_movement" title="Free software movement">free software movement</a>, specifically for having worked on proprietary software with Transmeta, and for his use and alleged advocacy of the proprietary <a href="http://en.wikipedia.org/wiki/BitKeeper" title="BitKeeper">BitKeeper</a> software for version control in the Linux kernel. However, Torvalds has since written a free-software replacement for BitKeeper called <a href="http://en.wikipedia.org/wiki/Git_%28software%29" title="Git (software)">git</a>. Torvalds has commented on official <a href="http://en.wikipedia.org/wiki/GNOME" title="GNOME">GNOME</a> developmental mailing lists that, in terms of <a href="http://en.wikipedia.org/wiki/Desktop_environment" title="Desktop environment">desktop environments</a>, he encourages users to switch to <a href="http://en.wikipedia.org/wiki/KDE" title="KDE">KDE</a> <a href="http://mail.gnome.org/archives/usability/2005-December/msg00021.html" class="external autonumber" title="http://mail.gnome.org/archives/usability/2005-December/msg00021.html" rel="nofollow">[2]</a> and he explained why <a href="http://www.desktoplinux.com/news/NS8745257437.html" class="external autonumber" title="http://www.desktoplinux.com/news/NS8745257437.html" rel="nofollow">[3]</a>.</p>
<p>Torvalds often finds himself in the middle of competing ideologies: on one hand he is an established icon of open-source and free software, yet on the other he has supported the use of the proprietary software <a href="http://en.wikipedia.org/wiki/BitKeeper" title="BitKeeper">BitKeeper</a> to help manage the Linux kernel and has stated that Linux may include technology supporting <a href="http://en.wikipedia.org/wiki/Digital_Rights_Management" title="Digital Rights Management">digital rights management</a> for pragmatic reasons.</p>
<h2><span class="mw-headline">The Linus/Linux connection</span></h2>
<p>Torvalds originally used the Minix OS on his system which he replaced with the Linux OS. He first named it <em>Freax</em> (a combination of &#8220;free&#8221;, &#8220;freak&#8221;, and the letter X to indicate that it is a Unix-like system), but his friend <a href="http://en.wikipedia.org/wiki/Ari_Lemmke" title="Ari Lemmke">Ari Lemmke</a>, who administered the <a href="http://en.wikipedia.org/wiki/File_Transfer_Protocol" title="File Transfer Protocol">FTP</a> <a href="http://en.wikipedia.org/wiki/Server_%28computing%29" title="Server (computing)">server</a> where the Linux kernel was first hosted for downloading, gave Torvalds a directory called <em>linux</em> (Torvalds &amp; Diamond 2001:88).</p>
<h2><span class="mw-headline">Authority on Linux</span></h2>
<p>About 2% of the current Linux kernel is written by Torvalds himself. Since Linux has had thousands of contributors, such a percentage is very respectable. Torvalds remains the ultimate authority on what new code is incorporated into the Linux kernel.</p>
<h2><span class="mw-headline">Linux trademark</span></h2>
<p>Torvalds owns the &#8220;Linux&#8221; <a href="http://en.wikipedia.org/wiki/Trademark" title="Trademark">trademark</a>, and monitors <a href="http://slashdot.org/articles/00/01/19/0828245.shtml" class="external autonumber" title="http://slashdot.org/articles/00/01/19/0828245.shtml" rel="nofollow">[4]</a> use of it chiefly through the <a href="http://en.wikipedia.org/wiki/Non-profit_organization" title="Non-profit organization">non-profit organization</a> <a href="http://en.wikipedia.org/wiki/Linux_International" title="Linux International">Linux International</a>. Linux&#8217;s wide and passionate userbase makes trademark abuse difficult as misuse is rapidly detected.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jomyr.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jomyr.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jomyr.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jomyr.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jomyr.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jomyr.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jomyr.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jomyr.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jomyr.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jomyr.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jomyr.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jomyr.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=5&subd=jomyr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jomyr.wordpress.com/2007/03/21/linus-benedict-torvalds-the-man-behind-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f099bd7ad6c6875ba1572e0f4a8339d2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">---==_d@rk_@ngel_==---</media:title>
		</media:content>

		<media:content url="http://jomyr.files.wordpress.com/2007/03/220px-linus_torvalds.jpeg" medium="image">
			<media:title type="html">Linux Torvalds</media:title>
		</media:content>
	</item>
		<item>
		<title>About Linux&#8230;</title>
		<link>http://jomyr.wordpress.com/2007/03/21/about-linux/</link>
		<comments>http://jomyr.wordpress.com/2007/03/21/about-linux/#comments</comments>
		<pubDate>Wed, 21 Mar 2007 01:38:53 +0000</pubDate>
		<dc:creator>JOMYR ALIPIO</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Technmology]]></category>

		<guid isPermaLink="false">http://jomyr.wordpress.com/2007/03/21/about-linux/</guid>
		<description><![CDATA[Linux is an open-source operating system that is generally available for free and can be used to run most computers, including Dell’s PCs.However, Dell does not break out how much it charges for Windows when it calculates the cost of a computer system.
The only operating system that Dell currently offers on its PCs is Microsoft’s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=4&subd=jomyr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.linux.org/">Linux </a>is an open-source operating system that is generally available for free and can be used to run most computers, including Dell’s PCs.However, Dell does not break out how much it charges for Windows when it calculates the cost of a computer system.<br />
The only operating system that Dell currently offers on its PCs is Microsoft’s (Charts) Windows. It also sells high-end Linux desktops designed specifically for use in oil and gas exploration.</p>
<p>Making Linux available on other Dell PCs has been the top request since the Web site was launched on Feb. 16, according to data posted on the site, as of Tuesday evening.</p>
<p>The second most popular request was that Dell offer another popular free software title, OpenOffice, which competes with Microsoft Office programs including Word, Excel and PowerPoint.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jomyr.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jomyr.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jomyr.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jomyr.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jomyr.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jomyr.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jomyr.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jomyr.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jomyr.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jomyr.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jomyr.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jomyr.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=4&subd=jomyr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jomyr.wordpress.com/2007/03/21/about-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f099bd7ad6c6875ba1572e0f4a8339d2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">---==_d@rk_@ngel_==---</media:title>
		</media:content>
	</item>
		<item>
		<title>LINUX rules! And will conquer the IT world from Microsoft!</title>
		<link>http://jomyr.wordpress.com/2007/03/21/linux-rules-and-will-conquer-the-it-world-from-microsoft/</link>
		<comments>http://jomyr.wordpress.com/2007/03/21/linux-rules-and-will-conquer-the-it-world-from-microsoft/#comments</comments>
		<pubDate>Wed, 21 Mar 2007 01:24:41 +0000</pubDate>
		<dc:creator>JOMYR ALIPIO</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Technmology]]></category>

		<guid isPermaLink="false">http://jomyr.wordpress.com/2007/03/21/linux-rules-and-will-conquer-the-it-world-from-microsoft/</guid>
		<description><![CDATA[Well, LINUX is a very big threat for Microsoft, in my own opinion based on my experiences&#8230; After experiencing the &#8220;real power&#8221; of linux, that big company (?), hmmmm&#8230; (na ngayon napakaliit na ng tingin ko&#8230;) will surely pay for what they did, sooner or later! (monopoly). This is the reality&#8230; The truth behind the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=3&subd=jomyr&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="font-size:1.2em;">Well, LINUX is a very big threat for Microsoft, in my own opinion based on my experiences&#8230; After experiencing the &#8220;real power&#8221; of linux, that big company (?), hmmmm&#8230; (na ngayon napakaliit na ng tingin ko&#8230;) will surely pay for what they did, sooner or later! (monopoly). This is the reality&#8230; The truth behind the computer world. </span></p>
<p><span style="font-size:1.2em;">Go LINUX!!! Conquer the world of IT! Let us all support the world of OpenSource worlwide! I&#8217;m proud to be one of the LINUX users here in the Philippines! The real and only one &#8220;AZTIG&#8221;&#8230;</span></p>
<p><strong>That&#8217;s all! GOD bless us all!</strong></p>
<p>You may download Bayanihan Linux 4 at www.bayanihan.gov.ph Philippines own Operating System! Why use other Linux distributions or Windows Operating Systems? We have our own!</p>
<p><a href="mailto:---==_d@rk_@ngel_==---">&#8212;==_d@rk_@ngel_==&#8212;</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jomyr.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jomyr.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jomyr.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jomyr.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jomyr.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jomyr.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jomyr.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jomyr.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jomyr.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jomyr.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jomyr.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jomyr.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jomyr.wordpress.com&blog=891192&post=3&subd=jomyr&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jomyr.wordpress.com/2007/03/21/linux-rules-and-will-conquer-the-it-world-from-microsoft/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f099bd7ad6c6875ba1572e0f4a8339d2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">---==_d@rk_@ngel_==---</media:title>
		</media:content>
	</item>
	</channel>
</rss>