<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-670563882054792713</atom:id><lastBuildDate>Sat, 14 Sep 2024 18:39:44 +0000</lastBuildDate><category>Tips and Tricks</category><category>Linux</category><category>Data</category><title>Linux Cracked</title><description></description><link>http://unleashed-linux.blogspot.com/</link><managingEditor>noreply@blogger.com (venomofdeath)</managingEditor><generator>Blogger</generator><openSearch:totalResults>17</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-7571714313545940091</guid><pubDate>Thu, 01 May 2008 17:46:00 +0000</pubDate><atom:updated>2008-05-01T10:50:53.809-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Encrypted filesystems for Linux</title><description>There are a few encrypted filesystems for Linux. Ones aimed at distributed filesystems (NFS replacements): - &quot;CFS&quot;, which has been packaged and is available from non-us.debian.org. - &quot;TCFS&quot;, &lt;a href=&quot;http://tcfs.dia.unisa.it/&quot;&gt;http://tcfs.dia.unisa.it/&lt;/a&gt; I used CFS several years ago and it seemed to work well.  My only complaint was that triple DES was a bit slow on my 486/33. Another approach which I am currently using involves patching the kernel to provide kernel level encrypted filesystems.  I have updated a patch for kernel 2.0.36 which was originally released in 1996 for kernel 2.0.11.  I have gotten good results with this using IDEA encryption on systems ranging from a 486/33 to PII-350. There are now encryption patches available for the new 2.2.x kernels. &lt;a href=&quot;ftp://ftp.kerneli.org/pub/linux/kerneli/v2.2/patch-int-2.2.1.1.gz&quot;&gt;ftp://ftp.kerneli.org/pub/linux/kerneli/v2.2/patch-int-2.2.1.1.gz&lt;/a&gt; will add encryption to linux 2.2.1.  I have not used this patch yet, but I will give it a try as soon as I update to slink and have a 2.2.x compatible system. When unmounted, the ability to scan the raw partition will not give your cracker any useful information.  If they are really determined, they could scan raw /tmp and swap partitions for traces of sensitive data.  Whether this is an issue depends on your required security level. When mounted, a root cracker would be able to read the all files on the partition.  Mounting the partition requires a passphrase. The kernel approach will require patching and building custom versions of the kernel and mount programs.</description><link>http://unleashed-linux.blogspot.com/2008/05/encrypted-filesystems-for-linux.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-4313884196293942133</guid><pubDate>Wed, 30 Apr 2008 14:33:00 +0000</pubDate><atom:updated>2008-04-30T07:40:25.876-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Protection Of SSH from Hackers</title><description>This Is used to add an additional layer to The System Security &lt;br /&gt;&lt;br /&gt;# !/bin/sh &lt;br /&gt;# &lt;br /&gt;# swatch        This shell script takes care of starting and stopping &lt;br /&gt;#               swatch. &lt;br /&gt;# &lt;br /&gt;# chkconfig: 2345 81 31 &lt;br /&gt;# description: Swatch is a System WATCHdog program that we are &lt;br /&gt;#              using here to block repeated failed ssh logins. &lt;br /&gt;# processname: swatch &lt;br /&gt;&lt;br /&gt;&lt;br /&gt; RETVAL=0 &lt;br /&gt; test -x /usr/bin/swatch || exit 0 &lt;br /&gt; start(){ &lt;br /&gt;   echo &quot;Starting swatch&quot; &lt;br /&gt;     # Spawn a new swatch program &lt;br /&gt;       /usr/bin/swatch --config-file=/etc/swatchrc --tail-file=/var/log/secure --awk-field-syntax --tail-args &quot;-F&quot; &amp; &lt;br /&gt;       echo $PID &lt;br /&gt; return $RETVAL &lt;br /&gt;} &lt;br /&gt;stop () { &lt;br /&gt;     # stop daemon &lt;br /&gt;   echo &quot;Stopping swatch:&quot; $PROG &lt;br /&gt;   killall swatch &lt;br /&gt;   return $RETVAL &lt;br /&gt;} &lt;br /&gt;restart () { &lt;br /&gt;   stop &lt;br /&gt;   start &lt;br /&gt;   RETVAL=$? &lt;br /&gt;   return $RETVAL &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;case &quot;$1&quot; in &lt;br /&gt;   start) &lt;br /&gt;       start &lt;br /&gt;       ;; &lt;br /&gt;   stop) &lt;br /&gt;       stop &lt;br /&gt;       ;; &lt;br /&gt;   restart) &lt;br /&gt;       restart &lt;br /&gt;       ;; &lt;br /&gt;   *) &lt;br /&gt;       echo &quot;Usage: $0 {start|stop|restart}&quot; &lt;br /&gt;       RETVAL=1 &lt;br /&gt;esac &lt;br /&gt;exit $RETVAL</description><link>http://unleashed-linux.blogspot.com/2008/04/protection-of-ssh-from-hackers.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-5100975350023436259</guid><pubDate>Sun, 27 Apr 2008 07:38:00 +0000</pubDate><atom:updated>2008-04-27T00:38:27.279-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>ATI &amp; Nvidia: Resume, Good News, Bad News</title><description>&lt;a href=&quot;http://ubuntulinuxtipstricks.blogspot.com/2008/03/ati-nvidia-resume-good-news-bad-news.html&quot;&gt;ATI &amp;amp; Nvidia: Resume, Good News, Bad News&lt;/a&gt;&lt;br /&gt;If you&#39;re using ATI or Nvidia&#39;s binary drivers on a laptop, you&#39;ve probably noticed that resuming from suspend &amp;amp; hibernate doesn&#39;t work so well. The fix is pretty simple, but definitely not intuitive.&lt;br /&gt;Hit alt+f2 (or if you use KDE whatever their runbox thing is...or use a terminal)&lt;br /&gt;Type in gksu gedit /etc/default/acpi-support (replace gksu gedit with kdesu kate if you use KDE)&lt;br /&gt;Scroll to Line 17, which says MODULES=&quot;&quot; and put fglrx (if you use ATI) or nvidia (if you use Nvidia) in the quotes&lt;br /&gt;Save and exit&lt;br /&gt;This will make the computer automatically unload your ATI or Nvidia drivers when you hibernate/suspend and reload them when you resume. If for some reason it still doesn&#39;t work perfectly (like the 3D is gone when you come back), try turning off Compiz before you suspend or hibernate. I&#39;ve seen that mess with things too.&lt;br /&gt;In the realm of good news, ATI has agreed to release open source drivers for Linux, just like Intel did years ago. Yay! In the realm of bad news, Nvidia still has not. We want to put pressure on Nvidia to rise to ATI&#39;s and Intel&#39;s challenge, do we not? Please take a moment to sign the &lt;a href=&quot;http://www.opentheblob.com/nvidia/index.php?signatures=normal&quot;&gt;Open Letter to Nvidia&lt;/a&gt; asking for fully free and open source 3D-accelerated Nvidia graphics drivers for Linux (8,264 signatures at time of posting) and &lt;a href=&quot;http://digg.com/linux_unix/An_Open_Letter_For_Open_Drivers_To_NVIDIA&quot;&gt;Digg It&lt;/a&gt;. In case you aren&#39;t aware, there are 2D open source (barely...the code&#39;s fairly well obfuscated) Nvidia drivers on Linux, but that&#39;s not good enough for games or for Compiz. &lt;a href=&quot;http://nouveau.freedesktop.org/wiki/&quot;&gt;Nouveau&lt;/a&gt; has been working on creating these 3D open source Nvidia drivers for a while now by reverse engineering and doing lots of hardware probing. For now, they&#39;ve got better 2D than Nvidia&#39;s own open source driver (haha) and some experimental 3D support on the cards the developers have in their own computer and therefore get to mess with the most.</description><link>http://unleashed-linux.blogspot.com/2008/04/ati-nvidia-resume-good-news-bad-news.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-8201716622596991320</guid><pubDate>Sun, 27 Apr 2008 07:35:00 +0000</pubDate><atom:updated>2008-04-27T00:36:48.134-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Create/Find Hardware Reviews</title><description>&lt;a href=&quot;http://ubuntulinuxtipstricks.blogspot.com/2008/04/createfind-hardware-reviews.html&quot;&gt;Create/Find Hardware Reviews&lt;/a&gt;&lt;br /&gt;Another release, another round of hardware that&#39;s never touched Linux having its virgin run. Also a lot of people going &quot;but will my hardware work?&quot; Please, please, take 15-30 minutes out of your day and review your hardware somewhere—or in more than one somewhere.Here are some suggestions:&lt;br /&gt;Hardware Testing - At the very least do this one. It&#39;s built into Ubuntu. On Gutsy, it&#39;s in Applications -&gt; System Tools. In Hardy, System -&gt; Administration -&gt; Hardware Testing. It&#39;ll run you through a few tests, asked if it worked, and ask for comments, then it submits the info to the Ubuntu devs using your &lt;a href=&quot;http://launchpad.net/&quot;&gt;Launchpad&lt;/a&gt; login. I don&#39;t think this is something that publicizes the results for easy shopping. The others all do.&lt;br /&gt;&lt;a href=&quot;http://www.linux-laptop.net/&quot;&gt;Linux on Laptops&lt;/a&gt; - If you&#39;re a laptop user, take a look. Is your model listed? Is it up to date? If the answer to either question is &quot;no,&quot; please submit the information. You can either make a webpage (they have a template) and send them a link or send the info as an attachment.&lt;br /&gt;&lt;a title=&quot;Ubuntu Hardware Compatibility List&quot; href=&quot;http://ubuntuhcl.org/&quot;&gt;UbuntuHCL&lt;/a&gt; - Sign up and add your parts to their online database. It lets you filter the listing in lots of nice ways to look up info before making a purchase. One thing I like is that the results show a listing of parts with their average rating so you can take a nice list to the store.&lt;br /&gt;&lt;a href=&quot;http://www.dohickey-project.com/&quot;&gt;Dohickey&lt;/a&gt; - Dohickey has a nice graphical client that asks you how well your hardware works, how hard it was to get working, etc. after auto-detecting what it all is. It then submits your results to its database which anyone can browse to find out what parts work well and easily, just like with UbuntuHCL.&lt;br /&gt;&lt;a href=&quot;https://wiki.ubuntu.com/HardwareSupport&quot;&gt;Ubuntu Wiki&lt;/a&gt; - Lots of pages where you can add info, drilling down into the different categories of hardware. There are listings for prebuilt desktops, laptops, and individual parts.</description><link>http://unleashed-linux.blogspot.com/2008/04/createfind-hardware-reviews.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-3496062953396649969</guid><pubDate>Sun, 27 Apr 2008 07:34:00 +0000</pubDate><atom:updated>2008-04-27T00:34:57.371-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Frozen Xwindow</title><description>Frozen Xwindow.&lt;br /&gt;If your Xwindow freezes sometimes, here are two ways that you may try to kill your server. The first is the simple simple way of killing your X server the key combination: Ctrl+Alt+Backspace&lt;br /&gt;The second way is a little more complicated, but it works most of the time. Hit Ctrl+Alt+F2 to startup a virtual console, then log in with your user name and password and run:&lt;br /&gt;# ps -ax  grep startx&lt;br /&gt;This will give you the PID of your Xserver. Then just kill it with:&lt;br /&gt;# kill -9 PID_Number&lt;br /&gt;To go back to your first console, just hit Alt-F1</description><link>http://unleashed-linux.blogspot.com/2008/04/frozen-xwindow.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-1676324033137959724</guid><pubDate>Sun, 27 Apr 2008 07:32:00 +0000</pubDate><atom:updated>2008-04-27T00:34:27.615-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Customizing your directory colors</title><description>Customizing your directory colors.&lt;br /&gt;I know a lot of you know the command ls --color. Which displays your directory with colors. But, a lot of people may not know that those colors are customizable. All you need to do is add the following line to your /etc/bashrc file.&lt;br /&gt;eval `dircolors /etc/DIR_COLORS`&lt;br /&gt;And then all of the color configuration can be found in the file /etc/DIR_COLORS</description><link>http://unleashed-linux.blogspot.com/2008/04/customizing-your-directory-colors.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-2941804183517354605</guid><pubDate>Sun, 27 Apr 2008 07:24:00 +0000</pubDate><atom:updated>2008-04-27T00:32:07.229-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Linux</category><title>Linux-My Opinion</title><description>I have been using linux for 3 years now and found it quite realiable.I dont know why people hate to use linux.I know its a little bit tough but ultimately we learn to use it.Even I when started to use linux I was not knowing how to use it......but these three years i have been learning sumthing or the other thing virtually everyday.First I used linux for its looks and graphics and still today i am mad after it.they are just awesome.and it does get better and better as u can see with fedora core 8 coming up.Linux is quite a good OS to use and is also a lot stable than other OS.so guys think about it.I will b uploading various new tips and tricks...and yeah u all can help me make my site better....everyone is welcome.for all newbies u can try on ur hands on Linspire or SuSE.I will uplload some free links for these distros shortly.</description><link>http://unleashed-linux.blogspot.com/2008/04/linux-my-opinion.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-9082922567132531257</guid><pubDate>Sat, 26 Apr 2008 13:07:00 +0000</pubDate><atom:updated>2008-04-26T06:09:08.316-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Dialup Using Red Hat netcfg</title><description>If you are using Redhat&#39;s netcfg utility to connect to the internet and you are sick of having to open up the GUI, and click on ACTIVATE to connect, and then have to click on DEACTIVATE to disconnect... here is one little thing that you can do to make life easier.&lt;br /&gt;Let&#39;s say you have a ppp0 set up with netcfg. Just add this two lines to your /etc/bashrc&lt;br /&gt;alias dial=&quot;/etc/sysconfig/network-scripts/ifup-ppp /etc/sysconfig/network-scripts/ifcfg-ppp0&quot;&lt;br /&gt;alias hangup=&quot;/etc/sysconfig/network-scripts/ifdown-ppp /etc/sysconfig/network-scripts/ifcfg-ppp0&quot;&lt;br /&gt;Now if you want to connect, all you need to do is to go to your terminal and type dial; if you would like to disconnect just</description><link>http://unleashed-linux.blogspot.com/2008/04/dialup-using-red-hat-netcfg.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-1769027433097110602</guid><pubDate>Sat, 19 Apr 2008 06:33:00 +0000</pubDate><atom:updated>2008-04-18T23:46:55.922-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Fedora Core 7</title><description>&lt;span style=&quot;font-size:180%;&quot;&gt;Upgrading from previous Fedora&lt;/span&gt;&lt;br /&gt;---------------------------------------------------&lt;br /&gt;# rpm -Uhv &lt;a href=&quot;http://rpm.livna.org/livna-release-7.rpm&quot;&gt;http://rpm.livna.org/livna-release-7.rpm&lt;/a&gt;&lt;br /&gt;Fedora 7 comes with a much improved font package which does NOT get installed when you upgrade for some reason. You&#39;ll first want to remove any of the Microsoft fonts first if you had installed them previously then install the new Red Hat provided fonts:&lt;br /&gt;# rpm -ev msttcorefonts&lt;br /&gt;# yum -y install liberation-fonts&lt;br /&gt;# service xfs restart&lt;br /&gt;And finally you&#39;re going to need to do an update of the whole system. This will most likely pick up official Fedora updates as well as updated packages from the Livna repository. This might take a while.&lt;br /&gt;# yum -y update&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:180%;&quot;&gt;Install MP3 Plug-in&lt;/span&gt;&lt;br /&gt;-------------------------------&lt;br /&gt;Since you&#39;ve been following along this next step is about as easy as it gets. Just use &lt;a style=&quot;COLOR: black; FONT-FAMILY: font-family: Courier, monospace; BACKGROUND-COLOR: #e6e6e6&quot;&gt;yum&lt;/a&gt; to automatically install the MP3 plug-ins for xmms and Rhythmbox like this:&lt;br /&gt;# yum -y install xmms xmms-mp3 xmms-faad2 gstreamer-plugins-ugly \&lt;br /&gt;gstreamer-plugins-bad libmad libid3tag&lt;br /&gt;While you&#39;re here you might as well install music player&lt;br /&gt;Banshee:&lt;br /&gt;# yum -y install banshee&lt;br /&gt;The &lt;a style=&quot;COLOR: black; FONT-FAMILY: font-family: Courier, monospace; BACKGROUND-COLOR: #e6e6e6&quot;&gt;-y&lt;/a&gt; flag is to automatically answer yes to any question. If you want to be able to say no you can ignore that flag.&lt;br /&gt;While you&#39;re there I highly recommend the &lt;a style=&quot;COLOR: black; FONT-FAMILY: font-family: Courier, monospace; BACKGROUND-COLOR: #e6e6e6&quot;&gt;grip&lt;/a&gt; CD ripper which supports both MP3 and Ogg formats. Once again installation is quite simple:&lt;br /&gt;# yum -y install grip&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:180%;&quot;&gt;Other Handy Utilities&lt;/span&gt;&lt;br /&gt;----------------------------------&lt;br /&gt;Here are a few other tools that aren&#39;t installed by default but a lot of people find handy:&lt;br /&gt;# yum -y install gnomebaker testdisk thunderbird \&lt;br /&gt;screen cups-pdf filelight unrar boost&lt;br /&gt;boost - Advanced graphical Bittorrent&lt;br /&gt;clientcups-pdf - Add-on to CUPS which creates a PDF Printer which you can use to print any document in PDF format. The file is written to your Desktop.&lt;br /&gt;filelight - A wonderful graphical viewer of where your disk space usage is. Very handy for cleaning up your home directory.&lt;br /&gt;gnomebaker - GTK based CD/DVD burning utilityscreen - If you do a lot with the command line you&#39;ll find screen&lt;br /&gt;invaluabletestdisk - Two command line utilities to recover lost partitions and undelete files on FAT filesystems. VERY handy for undeleting files on flash memory cards.&lt;br /&gt;thunderbird - Excellent E-mail client that complements Firefox&lt;br /&gt;unrar - Useful utility to extract RAR archives&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:180%;&quot;&gt;Install Java J2RE and Mozilla Plug-in&lt;/span&gt;&lt;br /&gt;----------------------------------------------------------&lt;br /&gt;It&#39;s also very handy to have the Java run-time environment available and most importantly a Mozilla plug-in so you can view dynamic content. It&#39;s unfortunate that Mozilla will actually crash if you go to a site containing Java and you don&#39;t have the plug-in installed. The libraries in Fedora 7 are newer than the ones used by Sun&#39;s build so you&#39;ll also need to install a compatability library.&lt;br /&gt;Java Runtime Environment (JRE) 6 Update 2 from &lt;a href=&quot;http://java.com/en/download/linux_manual.jsp?locale=en&amp;amp;host=java.com&quot; target=&quot;_blank&quot;&gt;Java.com&lt;/a&gt;. You&#39;ll want to grab the Linux RPM in self-extracting file. Then you want to install it with:&lt;br /&gt;# yum -y install compat-libstdc++-33&lt;br /&gt;# sh ./jre-6u2-linux-i586-rpm.bin&lt;br /&gt;Then you&#39;ll probably want to enable Java Plug-ins and here once again there is no easy way:&lt;br /&gt;# ln -s /usr/java/jre1.6.0_02/plugin/i386/ns7/libjavaplugin_oji.so /usr/lib/mozilla/plugins&lt;br /&gt;And finally you&#39;ll need to tell Fedora that you wish to use this version of Java as the preferred interpreter rather than the Open Source version that&#39;s installed by default. You&#39;ll of course need to adjust the full pathname if you install a newer version of the jre than the one in this example: # /usr/sbin/alternatives --install /usr/bin/java java \&lt;br /&gt;/usr/java/jre1.6.0_02/bin/java 1602&lt;br /&gt;# /usr/sbin/alternatives --config java&lt;br /&gt;There are 2 programs which provide &#39;java&#39;.&lt;br /&gt;Selection Command&lt;br /&gt;-----------------------------------------------&lt;br /&gt;+ 1 /usr/lib/jvm/jre-1.5.0-gcj/bin/java&lt;br /&gt;* 2 /usr/java/jre1.6.0_02/bin/java&lt;br /&gt;Enter to keep the current selection[+], or type selection number: 2&lt;br /&gt;# java -version&lt;br /&gt;java version &quot;1.6.0_02&quot;&lt;br /&gt;Java(TM) SE Runtime Environment (build 1.6.0_02-b05)&lt;br /&gt;Java HotSpot(TM) Client VM (build 1.6.0_02-b05, mixed mode, sharing)&lt;br /&gt;If you know of an easier way please post it to the Comments section below.&lt;br /&gt;After you re-start your browser you can test the Java plug-in installation at &lt;a href=&quot;http://java.com/en/download/installed.jsp&quot; target=&quot;_blank&quot;&gt;http://java.com/en/download/installed.jsp&lt;/a&gt;</description><link>http://unleashed-linux.blogspot.com/2008/04/fedora-core-7.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-4347035477543729107</guid><pubDate>Sat, 19 Apr 2008 06:20:00 +0000</pubDate><atom:updated>2008-04-18T23:23:36.363-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Linux Tips &amp; Tricks (Sound)</title><description>I use mpg123 (there&#39;s a debianized package) with sox. The command line is the following: #!/bin/bash# mp32wav mpg123 -b 10000 -s &quot;$1&quot;  sox -t raw -r 44100 -s -w -c2 - &quot;$2&quot; And the use is: mp32wav&lt;br /&gt; file.mp3=&gt; file.wav&lt;br /&gt;&lt;br /&gt;MP32Wav: &lt;a href=&quot;http://www.chip.co.id/freeware/mpw00.html&quot;&gt;http://www.chip.co.id/freeware/mpw00.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; 8hz-mp3, &lt;a href=&quot;http://www.8hz.com/&quot;&gt;http://www.8hz.com&lt;/a&gt;&lt;br /&gt;bladeenc, &lt;a href=&quot;http://home8.swipnet.se/~w-82625&quot;&gt;http://home8.swipnet.se/~w-82625&lt;/a&gt;&lt;br /&gt;Bladeenc is supposedly faster.</description><link>http://unleashed-linux.blogspot.com/2008/04/linux-tips-tricks-sound.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-1526786845761503537</guid><pubDate>Fri, 18 Apr 2008 12:10:00 +0000</pubDate><atom:updated>2008-04-18T05:16:12.593-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Linux</category><title>Various Linux Screens</title><description>&lt;center&gt;&lt;span style=&quot;font-family:Arial,Helvetica;font-size:100%;&quot;&gt;&lt;br /&gt;&lt;a href=&quot;http://www.desktoplinux.com/articles/AT3625355410.html&quot; target=&quot;new&quot;&gt;&lt;img src=&quot;http://www.desktoplinux.com/files/article105/freespire-0-sm.jpg&quot; border=&quot;0&quot; vspace=&quot;10&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Freespire&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.desktoplinux.com/articles/AT6462822198.html&quot; target=&quot;new&quot;&gt;&lt;img src=&quot;http://www.desktoplinux.com/files/article105/kubuntu-0-sm.jpg&quot; border=&quot;0&quot; vspace=&quot;10&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Kubuntu&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.desktoplinux.com/articles/AT4972631364.html&quot; target=&quot;new&quot;&gt;&lt;img src=&quot;http://www.desktoplinux.com/files/article105/linspire-0-sm.jpg&quot; border=&quot;0&quot; vspace=&quot;10&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Linspire&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.desktoplinux.com/articles/AT7940589878.html&quot; target=&quot;new&quot;&gt;&lt;img src=&quot;http://www.desktoplinux.com/files/article105/mandriva-0-sm.jpg&quot; border=&quot;0&quot; vspace=&quot;10&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Mandriva&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.desktoplinux.com/articles/AT4910845632.html&quot; target=&quot;new&quot;&gt;&lt;img src=&quot;http://www.desktoplinux.com/files/article105/pclinuxos-0-sm.jpg&quot; border=&quot;0&quot; vspace=&quot;10&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;PCLinuxOS&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.desktoplinux.com/articles/AT5851714005.html&quot; target=&quot;new&quot;&gt;&lt;img src=&quot;http://www.desktoplinux.com/files/article105/mepis-0-sm.jpg&quot; border=&quot;0&quot; vspace=&quot;10&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;SimplyMEPIS&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.desktoplinux.com/articles/AT7618998076.html&quot; target=&quot;new&quot;&gt;&lt;img src=&quot;http://www.desktoplinux.com/files/article105/xandros-0-sm.jpg&quot; border=&quot;0&quot; vspace=&quot;10&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Xandros&lt;/b&gt;&lt;br /&gt;&lt;/span&gt;&lt;/center&gt;&lt;span style=&quot;font-family:Arial,Helvetica;font-size:100%;&quot;&gt;&lt;br /&gt;&lt;/span&gt;</description><link>http://unleashed-linux.blogspot.com/2008/04/various-linux-screens.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-8060490256231879790</guid><pubDate>Fri, 18 Apr 2008 12:09:00 +0000</pubDate><atom:updated>2008-04-18T05:10:49.151-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Linux</category><title>Linux Distros</title><description>&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;10&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;90%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;b&gt;Fedora 8&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;http://www.osdisc.com/images/blackpixel.gif&quot; alt=&quot;&quot; height=&quot;1&quot; width=&quot;100%&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot;&gt;&lt;img src=&quot;http://www.osdisc.com/images/distro/fedora.gif&quot; alt=&quot;&quot; align=&quot;left&quot; hspace=&quot;20&quot; vspace=&quot;20&quot; width=&quot;64&quot; /&gt;&lt;/td&gt;&lt;td&gt;&lt;b&gt;Description&lt;/b&gt;&lt;br /&gt;The Fedora Project is a Red Hat sponsored and community-supported open source project. It is also a proving ground for new technology that may eventually make its way into Red Hat ... &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/fedora/i386.html&quot;&gt;Read more&lt;/a&gt;&lt;p&gt;&lt;img src=&quot;http://www.osdisc.com/images/0209/arrow.gif&quot; height=&quot;9&quot; width=&quot;7&quot; /&gt;  &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/fedora&quot;&gt;View all Fedora products&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;90%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;b&gt;Mandriva Linux 2008 Spring&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;http://www.osdisc.com/images/blackpixel.gif&quot; alt=&quot;&quot; height=&quot;1&quot; width=&quot;100%&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot;&gt;&lt;img src=&quot;http://www.osdisc.com/images/distro/mandriva.gif&quot; alt=&quot;&quot; align=&quot;left&quot; hspace=&quot;20&quot; vspace=&quot;20&quot; width=&quot;64&quot; /&gt;&lt;/td&gt;&lt;td&gt;&lt;b&gt;Description&lt;/b&gt;&lt;br /&gt;Mandriva Linux 2008 Spring was developed by the Mandriva development community, based around their development distribution. This open, community-driven development system has been in pla ... &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/mandriva/inst_set.html&quot;&gt;Read more&lt;/a&gt;&lt;p&gt;&lt;img src=&quot;http://www.osdisc.com/images/0209/arrow.gif&quot; height=&quot;9&quot; width=&quot;7&quot; /&gt;  &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/mandriva&quot;&gt;View all Mandriva products&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;90%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;b&gt;Ubuntu 7.10&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;http://www.osdisc.com/images/blackpixel.gif&quot; alt=&quot;&quot; height=&quot;1&quot; width=&quot;100%&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot;&gt;&lt;img src=&quot;http://www.osdisc.com/images/distro/ubuntu.gif&quot; alt=&quot;&quot; align=&quot;left&quot; hspace=&quot;20&quot; vspace=&quot;20&quot; width=&quot;64&quot; /&gt;&lt;/td&gt;&lt;td&gt;&lt;b&gt;Description&lt;/b&gt;&lt;br /&gt;Ubuntu is a Linux distribution for your desktop or server, with a fast and easy install, regular releases, a tight selection of excellent applications installed by default, every o ... &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/ubuntu/inst_5x.html&quot;&gt;Read more&lt;/a&gt;&lt;p&gt;&lt;img src=&quot;http://www.osdisc.com/images/0209/arrow.gif&quot; height=&quot;9&quot; width=&quot;7&quot; /&gt;  &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/ubuntu&quot;&gt;View all Ubuntu products&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;90%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;b&gt;openSUSE 10.3&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;http://www.osdisc.com/images/blackpixel.gif&quot; alt=&quot;&quot; height=&quot;1&quot; width=&quot;100%&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot;&gt;&lt;img src=&quot;http://www.osdisc.com/images/distro/suse.gif&quot; alt=&quot;&quot; align=&quot;left&quot; hspace=&quot;20&quot; vspace=&quot;20&quot; width=&quot;64&quot; /&gt;&lt;/td&gt;&lt;td&gt;&lt;b&gt;Description&lt;/b&gt;&lt;br /&gt;The openSUSE project is a community program sponsored by Novell. Promoting the use of Linux everywhere, this project provides free, easy access to the world&#39;s most usable Linux dis ... &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/suse/inst_kde.html&quot;&gt;Read more&lt;/a&gt;&lt;p&gt;&lt;img src=&quot;http://www.osdisc.com/images/0209/arrow.gif&quot; height=&quot;9&quot; width=&quot;7&quot; /&gt;  &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/suse&quot;&gt;View all SUSE products&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;90%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;b&gt;Knoppix 5.3.1&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;http://www.osdisc.com/images/blackpixel.gif&quot; alt=&quot;&quot; height=&quot;1&quot; width=&quot;100%&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot;&gt;&lt;img src=&quot;http://www.osdisc.com/images/distro/knoppix.gif&quot; alt=&quot;&quot; align=&quot;left&quot; hspace=&quot;20&quot; vspace=&quot;20&quot; width=&quot;64&quot; /&gt;&lt;/td&gt;&lt;td&gt;&lt;b&gt;Description&lt;/b&gt;&lt;br /&gt;Knoppix is a bootable live DVD with a collection of GNU/Linux software, automatic hardware detection, and support for many graphics cards, sound cards, SCSI and USB devices and oth ... &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/knoppix/dvd_53.html&quot;&gt;Read more&lt;/a&gt;&lt;p&gt;&lt;img src=&quot;http://www.osdisc.com/images/0209/arrow.gif&quot; height=&quot;9&quot; width=&quot;7&quot; /&gt;  &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/knoppix&quot;&gt;View all Knoppix products&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;90%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;b&gt;Debian GNU/Linux 4.0r3&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;http://www.osdisc.com/images/blackpixel.gif&quot; alt=&quot;&quot; height=&quot;1&quot; width=&quot;100%&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot;&gt;&lt;img src=&quot;http://www.osdisc.com/images/distro/debian.gif&quot; alt=&quot;&quot; align=&quot;left&quot; hspace=&quot;20&quot; vspace=&quot;20&quot; width=&quot;64&quot; /&gt;&lt;/td&gt;&lt;td&gt;&lt;b&gt;Description&lt;/b&gt;&lt;br /&gt;The Debian Project is an association of individuals who have made common cause to create a free operating system. This operating system is called Debian GNU/Linux, or simply Debian ... &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/debian/i386.html&quot;&gt;Read more&lt;/a&gt;&lt;p&gt;&lt;img src=&quot;http://www.osdisc.com/images/0209/arrow.gif&quot; height=&quot;9&quot; width=&quot;7&quot; /&gt;  &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/debian&quot;&gt;View all Debian products&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;90%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;b&gt;SimplyMEPIS 7.0&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;http://www.osdisc.com/images/blackpixel.gif&quot; alt=&quot;&quot; height=&quot;1&quot; width=&quot;100%&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot;&gt;&lt;img src=&quot;http://www.osdisc.com/images/distro/mepis.gif&quot; alt=&quot;&quot; align=&quot;left&quot; hspace=&quot;20&quot; vspace=&quot;20&quot; width=&quot;64&quot; /&gt;&lt;/td&gt;&lt;td&gt;&lt;b&gt;Description&lt;/b&gt;&lt;br /&gt;SimplyMEPIS as a live CD allows you to run the Linux operating system and all the programs from your CD drive before you install. There is no need to backup all your data, delete t ... &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/mepis/inst.html&quot;&gt;Read more&lt;/a&gt;&lt;p&gt;&lt;img src=&quot;http://www.osdisc.com/images/0209/arrow.gif&quot; height=&quot;9&quot; width=&quot;7&quot; /&gt;  &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/mepis&quot;&gt;View all MEPIS products&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;90%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;b&gt;FreeBSD 7.0&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;http://www.osdisc.com/images/blackpixel.gif&quot; alt=&quot;&quot; height=&quot;1&quot; width=&quot;100%&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot;&gt;&lt;img src=&quot;http://www.osdisc.com/images/distro/freebsd.jpg&quot; alt=&quot;&quot; align=&quot;left&quot; hspace=&quot;20&quot; vspace=&quot;20&quot; width=&quot;64&quot; /&gt;&lt;/td&gt;&lt;td&gt;&lt;b&gt;Description&lt;/b&gt;&lt;br /&gt;FreeBSD provides higher performance and greater compatibility with other operating systems, and less system administration. FreeBSD(tm) is a full, professional quality, UNIX compat ... &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/bsd/freebsd/inst.html&quot;&gt;Read more&lt;/a&gt;&lt;p&gt;&lt;img src=&quot;http://www.osdisc.com/images/0209/arrow.gif&quot; height=&quot;9&quot; width=&quot;7&quot; /&gt;  &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/bsd/freebsd&quot;&gt;View all FreeBSD products&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;90%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;b&gt;Slackware 12.0&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;http://www.osdisc.com/images/blackpixel.gif&quot; alt=&quot;&quot; height=&quot;1&quot; width=&quot;100%&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot;&gt;&lt;img src=&quot;http://www.osdisc.com/images/distro/slack.gif&quot; alt=&quot;&quot; align=&quot;left&quot; hspace=&quot;20&quot; vspace=&quot;20&quot; width=&quot;64&quot; /&gt;&lt;/td&gt;&lt;td&gt;&lt;b&gt;Description&lt;/b&gt;&lt;br /&gt;Slackware is an advanced Linux operating system, designed with the twin goals of ease of use and stability as top priorities. Including the latest popular software while retaining ... &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/slackware/inst_10x.html&quot;&gt;Read more&lt;/a&gt;&lt;p&gt;&lt;img src=&quot;http://www.osdisc.com/images/0209/arrow.gif&quot; height=&quot;9&quot; width=&quot;7&quot; /&gt;  &lt;a href=&quot;http://www.osdisc.com/cgi-bin/view.cgi/products/linux/slackware&quot;&gt;View all Slackware products&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</description><link>http://unleashed-linux.blogspot.com/2008/04/linux-distros.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-3079857236568093176</guid><pubDate>Sat, 12 Apr 2008 17:54:00 +0000</pubDate><atom:updated>2008-04-12T11:04:01.587-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Linux</category><title>Fedora Core-Some Greatest moments with Screens</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.blueconfusion.com/images/fedora.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px;&quot; src=&quot;http://www.blueconfusion.com/images/fedora.png&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://chaz6.com/static/images/vmware-fedora-core-7.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px;&quot; src=&quot;http://chaz6.com/static/images/vmware-fedora-core-7.png&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.tuxdistro.com/sshot/fc7rc2.gif&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px;&quot; src=&quot;http://www.tuxdistro.com/sshot/fc7rc2.gif&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;</description><link>http://unleashed-linux.blogspot.com/2008/04/fedora-core-some-greatest-moments-with.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-5984685617196189263</guid><pubDate>Sat, 12 Apr 2008 17:48:00 +0000</pubDate><atom:updated>2008-04-12T11:07:53.069-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Linux</category><title>Ubuntu</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://marcelomendes.eti.br/img/ubuntu-wallpaper-easy.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px;&quot; src=&quot;http://marcelomendes.eti.br/img/ubuntu-wallpaper-easy.png&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Ubuntu&lt;/b&gt; (&lt;a href=&quot;http://en.wikipedia.org/wiki/Help:IPA&quot; title=&quot;Help:IPA&quot;&gt;IPA&lt;/a&gt;: &lt;span title=&quot;Pronunciation in IPA&quot; class=&quot;IPA&quot;&gt;[uːˈbuːntuː]&lt;/span&gt; in &lt;a href=&quot;http://en.wikipedia.org/wiki/English_language&quot; title=&quot;English language&quot;&gt;English&lt;/a&gt;,&lt;span title=&quot;Representation in the International Phonetic Alphabet (IPA)&quot; class=&quot;IPA&quot;&gt;[ùbúntú]&lt;/span&gt; in &lt;a href=&quot;http://en.wikipedia.org/wiki/Zulu&quot; title=&quot;Zulu&quot;&gt;Zulu&lt;/a&gt;) is a &lt;a href=&quot;http://en.wikipedia.org/wiki/Linux_distribution&quot; title=&quot;Linux distribution&quot;&gt;Linux distribution&lt;/a&gt; for &lt;a href=&quot;http://en.wikipedia.org/wiki/Desktop_computer&quot; title=&quot;Desktop computer&quot;&gt;desktops&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/Laptop&quot; title=&quot;Laptop&quot;&gt;laptops&lt;/a&gt;, and &lt;a href=&quot;http://en.wikipedia.org/wiki/Server_%28computing%29&quot; title=&quot;Server (computing)&quot;&gt;servers&lt;/a&gt;. It has consistently been rated among the most popular of the many GNU/Linux distributions. Ubuntu&#39;s goals include providing an up-to-date yet stable operating system for the average user and having a strong focus on &lt;a href=&quot;http://en.wikipedia.org/wiki/Usability&quot; title=&quot;Usability&quot;&gt;usability&lt;/a&gt; and ease of installation. It is a derivative of &lt;a href=&quot;http://en.wikipedia.org/wiki/Debian&quot; title=&quot;Debian&quot;&gt;Debian GNU/Linux&lt;/a&gt;. Ubuntu is sponsored by &lt;a href=&quot;http://en.wikipedia.org/wiki/Canonical_Ltd&quot; class=&quot;mw-redirect&quot; title=&quot;Canonical Ltd&quot;&gt;Canonical Ltd&lt;/a&gt;, owned by &lt;a href=&quot;http://en.wikipedia.org/wiki/South_Africa&quot; title=&quot;South Africa&quot;&gt;South African&lt;/a&gt; entrepreneur &lt;a href=&quot;http://en.wikipedia.org/wiki/Mark_Shuttleworth&quot; title=&quot;Mark Shuttleworth&quot;&gt;Mark Shuttleworth&lt;/a&gt;. The name of the distribution comes from the southern &lt;a href=&quot;http://en.wikipedia.org/wiki/Africa&quot; title=&quot;Africa&quot;&gt;African&lt;/a&gt; concept of &lt;i&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Ubuntu_%28philosophy%29&quot; title=&quot;Ubuntu (philosophy)&quot;&gt;ubuntu&lt;/a&gt;&lt;/i&gt; which may be rendered roughly as &quot;humanity toward others&quot;, &quot;we are people because of other people&quot;, or &quot;I am who I am because of who we all are&quot;, though other meanings have been suggested.This Linux distribution is named Ubuntu as it is expected to bring the spirit of Ubuntu to the software world. Ubuntu is &lt;a href=&quot;http://en.wikipedia.org/wiki/Free_software&quot; title=&quot;Free software&quot;&gt;free software&lt;/a&gt; and users can share it among each other.&lt;/p&gt; &lt;p&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Kubuntu&quot; title=&quot;Kubuntu&quot;&gt;Kubuntu&lt;/a&gt; and &lt;a href=&quot;http://en.wikipedia.org/wiki/Xubuntu&quot; title=&quot;Xubuntu&quot;&gt;Xubuntu&lt;/a&gt; are official subprojects of the Ubuntu project, aiming to bring the &lt;a href=&quot;http://en.wikipedia.org/wiki/KDE&quot; title=&quot;KDE&quot;&gt;KDE&lt;/a&gt; and &lt;a href=&quot;http://en.wikipedia.org/wiki/Xfce&quot; title=&quot;Xfce&quot;&gt;Xfce&lt;/a&gt; &lt;a href=&quot;http://en.wikipedia.org/wiki/Desktop_environment&quot; title=&quot;Desktop environment&quot;&gt;desktop environments&lt;/a&gt;, respectively, to the Ubuntu core (Ubuntu uses &lt;a href=&quot;http://en.wikipedia.org/wiki/GNOME&quot; title=&quot;GNOME&quot;&gt;GNOME&lt;/a&gt; for its desktop environment). &lt;a href=&quot;http://en.wikipedia.org/wiki/Edubuntu&quot; title=&quot;Edubuntu&quot;&gt;Edubuntu&lt;/a&gt; is an official subproject designed for school environments, and should be equally suitable for children to use at home. &lt;a href=&quot;http://en.wikipedia.org/wiki/Gobuntu&quot; title=&quot;Gobuntu&quot;&gt;Gobuntu&lt;/a&gt; is an official subproject that is aimed at adhering strictly to the &lt;a href=&quot;http://en.wikipedia.org/wiki/Free_Software_Foundation&quot; title=&quot;Free Software Foundation&quot;&gt;Free Software Foundation&lt;/a&gt;&#39;s &lt;a href=&quot;http://en.wikipedia.org/wiki/Free_software#Definition&quot; title=&quot;Free software&quot;&gt;Four Freedoms&lt;/a&gt;.The newest official subproject is JeOS. &lt;a href=&quot;http://en.wikipedia.org/wiki/Ubuntu_JeOS&quot; title=&quot;Ubuntu JeOS&quot;&gt;Ubuntu JeOS&lt;/a&gt; (pronounced &quot;Juice&quot;) is a concept for what an operating system should look like in the context of a virtual appliance.&lt;/p&gt; Ubuntu releases new versions every six months, and supports those releases for 18 months with daily security fixes and patches to critical bugs. The most recent version, Ubuntu 7.10 &lt;i&gt;(Gutsy Gibbon)&lt;/i&gt;, was released on &lt;a href=&quot;http://en.wikipedia.org/wiki/October_18&quot; title=&quot;October 18&quot;&gt;18 October&lt;/a&gt; &lt;a href=&quot;http://en.wikipedia.org/wiki/2007&quot; title=&quot;2007&quot;&gt;2007&lt;/a&gt;. There are also Long Term Support (&lt;i&gt;LTS&lt;/i&gt;) releases, which have three years support for the desktop version and five years for the server version. The most recent major LTS version, Ubuntu 6.06 &lt;i&gt;(Dapper Drake)&lt;/i&gt;, was released on &lt;a href=&quot;http://en.wikipedia.org/wiki/June_1&quot; title=&quot;June 1&quot;&gt;June 1&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/2006&quot; title=&quot;2006&quot;&gt;2006&lt;/a&gt;. The first update, Ubuntu 6.06.1, was released on &lt;a href=&quot;http://en.wikipedia.org/wiki/August_10&quot; title=&quot;August 10&quot;&gt;August 10&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/2006&quot; title=&quot;2006&quot;&gt;2006&lt;/a&gt;, while the second, 6.06.2, was released on &lt;a href=&quot;http://en.wikipedia.org/wiki/January_21&quot; title=&quot;January 21&quot;&gt;January 21&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/2008&quot; title=&quot;2008&quot;&gt;2008&lt;/a&gt;.The next major LTS version will be 8.04 &lt;i&gt;(Hardy Heron)&lt;/i&gt;, scheduled for release in April 2008. Following this, Ubuntu 8.10 &lt;i&gt;(Intrepid Ibex)&lt;/i&gt; is planned for release in October 2008.</description><link>http://unleashed-linux.blogspot.com/2008/04/ubuntu.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-7015396142447596933</guid><pubDate>Sat, 12 Apr 2008 17:43:00 +0000</pubDate><atom:updated>2008-04-12T10:46:59.952-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Linux</category><title>Mandriva- Formerly Mandrake</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://artipc10.vub.ac.be/serendipity/uploads/screenshots/mandriva2008/mandriva-boot.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px;&quot; src=&quot;http://artipc10.vub.ac.be/serendipity/uploads/screenshots/mandriva2008/mandriva-boot.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style=&quot;;font-family:Arial,Helvetica;font-size:100%;&quot;  &gt;Mandriva Linux, formerly Mandrake Linux, announced Tuesday that the ISO images of the free edition of its 2006 operating system are now available for download on public FTP mirror sites. France-based Mandriva began shipping boxed versions of its 2006 operating system on Nov. 3.&lt;br /&gt;&lt;br /&gt;Mandriva Linux 2006 Free is a complete and comprehensive Linux distribution consisting entirely of free and open source software. It is freely downloadable and redistributable by anyone.&lt;br /&gt;&lt;br /&gt;The newest version of the company&#39;s flagship product merges &quot;pioneer technologies&quot; from Conectiva and Lycoris, as well as spanning for the first time a one-year release cycle, the company said.&lt;br /&gt;&lt;br /&gt;Mandriva 2006&#39;s key new features, as highlighted by the company, are:&lt;/span&gt;&lt;ul&gt;&lt;span style=&quot;;font-family:Arial,Helvetica;font-size:100%;&quot;  &gt;&lt;li&gt;Linux kernel 2.6.12-12mdk&lt;br /&gt;&lt;/li&gt;&lt;li&gt;KDE 3.4&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Kat desktop search tool&lt;br /&gt;&lt;/li&gt;&lt;li&gt;OpenOffice 2.0&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Interactive firewall&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Official support for Intel&#39;s Centrino mobile technology&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Full integration of Skype&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Auto-installation server&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Smart package manager&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Integration of Conectiva&#39;s and Lycoris&#39;s technologies&lt;/li&gt;&lt;/span&gt;&lt;/ul&gt;&lt;span style=&quot;;font-family:Arial,Helvetica;font-size:100%;&quot;  &gt;The Kat desktop search tool allows users to track down information not only in file names but also in the content of the files, according to the company. This provides a powerful means to being permanently able to find important data on one&#39;s computer, even many months or years after having created a document, Mandriva said.&lt;br /&gt;&lt;br /&gt;An interactive firewall lets users get real-time information on malicious actions being performed against their system, according to the company. Unlike a typical firewall, which is based on fixed rules, the interactive version allows to constantly adapt the rules depending on the actual status of the computer, Madriva said.&lt;br /&gt;&lt;br /&gt;Some key applications included in all versions of Mandriva 2006 are:&lt;/span&gt;&lt;ul&gt;&lt;span style=&quot;;font-family:Arial,Helvetica;font-size:100%;&quot;  &gt;&lt;li&gt;OpenOffice.org office suite&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Mozilla Firefox 1.0.7&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Kopete IM client&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Kontact contact management&lt;br /&gt;&lt;/li&gt;&lt;li&gt;The GIMP, for image creation and manipulation&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Amarok, for digital music collection and management&lt;/li&gt;&lt;/span&gt;&lt;/ul&gt;&lt;span style=&quot;;font-family:Arial,Helvetica;font-size:100%;&quot;  &gt;Each edition of Mandriva Linux 2006 is available for both 32-bit and 64-bit platforms. In addition to an extensive selection of software, all 2006 official versions include many pre-packaged commercial plugins such as Flash and Java players, NVIDIA and ATI drivers, and many others, according to the company.&lt;br /&gt;&lt;br /&gt;Mandriva 2006 is available in three editions: &lt;/span&gt;&lt;ul&gt;&lt;span style=&quot;;font-family:Arial,Helvetica;font-size:100%;&quot;  &gt; &lt;li&gt;  Discovery/Lx, for the Linux beginner&lt;br /&gt;&lt;/li&gt;&lt;li&gt; PowerPack, for the advanced computer user&lt;br /&gt;&lt;/li&gt;&lt;li&gt; PowerPack+, for SOHO users&lt;/li&gt;&lt;/span&gt;&lt;/ul&gt;&lt;span style=&quot;;font-family:Arial,Helvetica;font-size:100%;&quot;  &gt;Mandriva 2006 is available for purchase at the &lt;a href=&quot;http://store.mandriva.com/&quot; target=&quot;new&quot;&gt;&lt;u&gt;Mandriva Store&lt;/u&gt;&lt;/a&gt;. Paid downloadable versions are available &lt;a href=&quot;http://store.mandriva.com/index.php?cPath=117&quot; target=&quot;new&quot;&gt;&lt;u&gt;here&lt;/u&gt;&lt;/a&gt;. Mandriva Club members and Mandriva official contributors have rights to simply download the software. All Mandriva Linux 2006 editions include Web-based support, printed or electronic manuals, and a free limited subscription to Mandriva Online (for easy updates) and Mandriva Club, the company said.&lt;br /&gt;&lt;br /&gt;download link:http://frontal2.mandriva.com/en/downloads&lt;br /&gt;&lt;/span&gt;</description><link>http://unleashed-linux.blogspot.com/2008/04/mandriva-formerly-mandrake.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-5499348450787492170</guid><pubDate>Sat, 12 Apr 2008 13:13:00 +0000</pubDate><atom:updated>2008-04-12T06:16:37.841-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Linux</category><title>Linspire-World&#39;s Easiest Linux</title><description>&lt;a href=&quot;http://images.linspire.com/whatis_linspire/screenshots/Wallpaper.jpg&quot;&gt;&lt;img style=&quot;DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 400px; CURSOR: hand; TEXT-ALIGN: center&quot; alt=&quot;&quot; src=&quot;http://images.linspire.com/whatis_linspire/screenshots/Wallpaper.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;It begins, where the others end...Starting with the best that open source has to offer Linspire adds CNR, proprietary software, drivers, and codecs to provide the world&#39;s easiest Linux-based operating system designed for laptop &amp;amp; desktop PCs&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;Powered by UbuntuLinspire is a Debian-based Linux operating system, which uses the popular Ubuntu Linux OS for its baseline. Linspire starts with Ubuntu, then adds many additional features and software applications including proprietary software, codecs and drivers to provide provide you the world&#39;s easiest Linux-based operating system designed for laptop &amp;amp; desktop PCs.&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;CNR available&lt;a href=&quot;http://www.cnr.com/&quot; target=&quot;_blank&quot;&gt;CNR.com&lt;/a&gt; provides access to over 20,000 free &amp;amp; commercial software programs, packages and libraries. Linspire 6.0 comes pre-installed with the CNR Client (Currently in beta stage - auto-updates are available for upcoming Client versions).&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;Multimedia SupportLinspire comes pre-loaded and ready to support MP3, Real, Quicktime, Windows Media, Java, Flash, and more. No more hunting around, buying, licensing and then installing all the different multimedia support software. Everything is already licensed and ready to run. Optional DVD playback support is just a click away at &lt;a href=&quot;http://www.cnr.com/&quot; target=&quot;_blank&quot;&gt;CNR.com&lt;/a&gt;.&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;Plug-N-Play Hardware SupportLinspire provides the most extensive hardware support available including drivers from ATI, nVidia, Intel, and others. Connect digital cameras, scanners, MP3 players and more. Linspire instantly recognizes USB and Firewire devices. Thousands of peripherals are supported without requiring the messy installation of drivers or other software. Just plug in the device and go.&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;Wireless NetworkingLinspire supports the latest 802.11b and 802.11g wireless networking and an updated Network Control panel lets you customize profiles so you can effortlessly shift between home, work and other networks without bothering with any configuration screens.&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;Office Productivity SuiteLinspire&#39;s comes pre-installed with a complete office productivity software suite (Open Office 2.2) which includes Microsoft file-compatible word processing, spreadsheet and presentation software, as well as new Open XML translators which enables bi-directional compatibility so that files saved in Open XML can be opened by OpenOffice, providing more interopability so you can easily read and share documents.&lt;br /&gt;&lt;br /&gt;Internet SuiteOnce connected to the web, the Linspire Internet Suite provides all you need to make the most of your online experience: An easy-to-use tabbed web browser with pop-up ad blocking, multi-account email program with SPAM filtering, an address book, calendar! And Linspire is compatible with Windows media, Flash, and Java and more!&lt;br /&gt;&lt;br /&gt;Instant MessagingStay in touch with all your friends using Pidgin. Instant Messaging from Pidgin supports AOL, AIM, Yahoo!, MSN, and other messaging networks, and includes plenty of advanced features such as tabs, chat rooms and buddy notification.&lt;br /&gt;&lt;br /&gt;Lphoto - Digital PhotosLinspire includes Lphoto, the best all-in-one photo manager available. Import, organize, edit, crop, enhance, and share photos from over 300 hundred plug-n-play supported digital cameras. Even use your photos as a screensaver and make video CDs!&lt;br /&gt;&lt;br /&gt;Lsongs - Digital MusicLsongs is an all-in-one music manager built-in to Linspire and ready to help you rip your favorite music, organize it, play it, sync it to portable players, and burn it to your own music mix CDs. Lsongs provides everything you need to easily manage and enjoy your music collection.&lt;br /&gt;&lt;br /&gt;Free Internet CallingThe popular Gizmo Project VoIP software lets you talk to your friends all over the world for free with no long-distance phone charges. Call computer-to-computer, set up conference calls, and check voicemail - all at no charge. Or you can &quot;Call Out&quot; to land-line telephones for as little as a penny per minute, and automatic account creation makes Gizmo Project a snap to set up.&lt;br /&gt;&lt;br /&gt;Microsoft IP ProtectionWe provide you the confidence of knowing that Linspire actively secures proper intellectual property licenses and assurances for 3rd party technology that are part of our products. These efforts include licensing agreements between Linspire and dozens of commercial software vendors, including our arrangement with Microsoft to provide Linspire customers with &lt;a href=&quot;http://www.microsoft.com/interop/collab/linspire/customer_covenant.mspx&quot; target=&quot;_blank&quot;&gt;Microsoft patent covenants&lt;/a&gt;.&lt;/div&gt;</description><link>http://unleashed-linux.blogspot.com/2008/04/linspire-worlds-easiest-linux.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-670563882054792713.post-2108525871905905658</guid><pubDate>Fri, 11 Apr 2008 14:23:00 +0000</pubDate><atom:updated>2008-04-11T07:32:32.972-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Data</category><title>Linux ?</title><description>Linux (commonly pronounced &lt;a title=&quot;Help:Pronunciation&quot; href=&quot;http://en.wikipedia.org/wiki/Help:Pronunciation&quot;&gt;IPA&lt;/a&gt; in English; variants exist) is a &lt;a title=&quot;Unix-like&quot; href=&quot;http://en.wikipedia.org/wiki/Unix-like&quot;&gt;Unix-like&lt;/a&gt; computer &lt;a title=&quot;Operating system&quot; href=&quot;http://en.wikipedia.org/wiki/Operating_system&quot;&gt;operating system&lt;/a&gt;. Linux is one of the most prominent examples of &lt;a title=&quot;Free software&quot; href=&quot;http://en.wikipedia.org/wiki/Free_software&quot;&gt;free software&lt;/a&gt; and &lt;a title=&quot;Open source&quot; href=&quot;http://en.wikipedia.org/wiki/Open_source&quot;&gt;open source&lt;/a&gt; development: typically all underlying &lt;a title=&quot;Source code&quot; href=&quot;http://en.wikipedia.org/wiki/Source_code&quot;&gt;source code&lt;/a&gt; can be freely modified, used, and redistributed by anyone.&lt;br /&gt;The name &quot;Linux&quot; comes from the &lt;a title=&quot;Linux kernel&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_kernel&quot;&gt;Linux kernel&lt;/a&gt;, started in 1991 by &lt;a title=&quot;Linus Torvalds&quot; href=&quot;http://en.wikipedia.org/wiki/Linus_Torvalds&quot;&gt;Linus Torvalds&lt;/a&gt;. The system&#39;s &lt;a class=&quot;mw-redirect&quot; title=&quot;System utility&quot; href=&quot;http://en.wikipedia.org/wiki/System_utility&quot;&gt;utilities&lt;/a&gt; and &lt;a class=&quot;mw-redirect&quot; title=&quot;Library (computer science)&quot; href=&quot;http://en.wikipedia.org/wiki/Library_%28computer_science%29&quot;&gt;libraries&lt;/a&gt; usually come from the &lt;a class=&quot;mw-redirect&quot; title=&quot;GNU operating system&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_operating_system&quot;&gt;GNU operating system&lt;/a&gt;, announced in 1983 by &lt;a title=&quot;Richard Stallman&quot; href=&quot;http://en.wikipedia.org/wiki/Richard_Stallman&quot;&gt;Richard Stallman&lt;/a&gt;. The GNU contribution is the basis for the &lt;a title=&quot;GNU/Linux naming controversy&quot; href=&quot;http://en.wikipedia.org/wiki/GNU/Linux_naming_controversy&quot;&gt;alternative name&lt;/a&gt; GNU/Linux.&lt;br /&gt;Predominantly known for its use in &lt;a title=&quot;Server (computing)&quot; href=&quot;http://en.wikipedia.org/wiki/Server_%28computing%29&quot;&gt;servers&lt;/a&gt;, Linux is supported by corporations such as &lt;a title=&quot;Dell&quot; href=&quot;http://en.wikipedia.org/wiki/Dell&quot;&gt;Dell&lt;/a&gt;, &lt;a title=&quot;Hewlett-Packard&quot; href=&quot;http://en.wikipedia.org/wiki/Hewlett-Packard&quot;&gt;Hewlett-Packard&lt;/a&gt;, &lt;a title=&quot;IBM&quot; href=&quot;http://en.wikipedia.org/wiki/IBM&quot;&gt;IBM&lt;/a&gt;, &lt;a title=&quot;Novell&quot; href=&quot;http://en.wikipedia.org/wiki/Novell&quot;&gt;Novell&lt;/a&gt;, &lt;a title=&quot;Oracle Corporation&quot; href=&quot;http://en.wikipedia.org/wiki/Oracle_Corporation&quot;&gt;Oracle Corporation&lt;/a&gt;, &lt;a title=&quot;Red Hat&quot; href=&quot;http://en.wikipedia.org/wiki/Red_Hat&quot;&gt;Red Hat&lt;/a&gt;, and &lt;a title=&quot;Sun Microsystems&quot; href=&quot;http://en.wikipedia.org/wiki/Sun_Microsystems&quot;&gt;Sun Microsystems&lt;/a&gt;. It is used as an operating system for a wide variety of computer &lt;a title=&quot;Hardware&quot; href=&quot;http://en.wikipedia.org/wiki/Hardware&quot;&gt;hardware&lt;/a&gt;, including &lt;a title=&quot;Desktop computer&quot; href=&quot;http://en.wikipedia.org/wiki/Desktop_computer&quot;&gt;desktop computers&lt;/a&gt;, &lt;a class=&quot;mw-redirect&quot; title=&quot;Supercomputers&quot; href=&quot;http://en.wikipedia.org/wiki/Supercomputers&quot;&gt;supercomputers&lt;/a&gt;,video game systems, such as the &lt;a title=&quot;PlayStation 2&quot; href=&quot;http://en.wikipedia.org/wiki/PlayStation_2&quot;&gt;PlayStation 2&lt;/a&gt; and &lt;a title=&quot;PlayStation 3&quot; href=&quot;http://en.wikipedia.org/wiki/PlayStation_3&quot;&gt;PlayStation 3&lt;/a&gt;, several &lt;a class=&quot;mw-redirect&quot; title=&quot;Arcade games&quot; href=&quot;http://en.wikipedia.org/wiki/Arcade_games&quot;&gt;arcade games&lt;/a&gt;, and &lt;a class=&quot;mw-redirect&quot; title=&quot;Embedded devices&quot; href=&quot;http://en.wikipedia.org/wiki/Embedded_devices&quot;&gt;embedded devices&lt;/a&gt; such as &lt;a title=&quot;Mobile phone&quot; href=&quot;http://en.wikipedia.org/wiki/Mobile_phone&quot;&gt;mobile phones&lt;/a&gt;, &lt;a class=&quot;mw-redirect&quot; title=&quot;Routers&quot; href=&quot;http://en.wikipedia.org/wiki/Routers&quot;&gt;routers&lt;/a&gt;, and &lt;a title=&quot;Stage lighting&quot; href=&quot;http://en.wikipedia.org/wiki/Stage_lighting&quot;&gt;stage lighting&lt;/a&gt; systems.&lt;br /&gt;The &lt;a title=&quot;Unix&quot; href=&quot;http://en.wikipedia.org/wiki/Unix&quot;&gt;Unix&lt;/a&gt; operating system was conceived and implemented in the 1960s and first released in 1970. Its wide availability and &lt;a title=&quot;Porting&quot; href=&quot;http://en.wikipedia.org/wiki/Porting&quot;&gt;portability&lt;/a&gt; meant that it was widely adopted, copied and modified by academic institutions and businesses, with its design being influential on authors of other systems.&lt;br /&gt;&lt;a class=&quot;image&quot; title=&quot;Richard Stallman, founder of the GNU project&quot; href=&quot;http://en.wikipedia.org/wiki/Image:Richard_Matthew_Stallman.jpeg&quot;&gt;&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;internal&quot; title=&quot;Enlarge&quot; href=&quot;http://en.wikipedia.org/wiki/Image:Richard_Matthew_Stallman.jpeg&quot;&gt;&lt;/a&gt;&lt;a title=&quot;Richard Stallman&quot; href=&quot;http://en.wikipedia.org/wiki/Richard_Stallman&quot;&gt;Richard Stallman&lt;/a&gt;, founder of the &lt;a class=&quot;mw-redirect&quot; title=&quot;GNU project&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_project&quot;&gt;GNU project&lt;/a&gt;&lt;br /&gt;The &lt;a title=&quot;GNU Project&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_Project&quot;&gt;GNU Project&lt;/a&gt;, started in 1984, had the goal of creating a &quot;complete Unix-compatible software system&quot;made entirely of &lt;a title=&quot;Free software&quot; href=&quot;http://en.wikipedia.org/wiki/Free_software&quot;&gt;free software&lt;/a&gt;. In 1985, &lt;a title=&quot;Richard Stallman&quot; href=&quot;http://en.wikipedia.org/wiki/Richard_Stallman&quot;&gt;Richard Stallman&lt;/a&gt; created the &lt;a title=&quot;Free Software Foundation&quot; href=&quot;http://en.wikipedia.org/wiki/Free_Software_Foundation&quot;&gt;Free Software Foundation&lt;/a&gt; and developed the &lt;a title=&quot;GNU General Public License&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_General_Public_License&quot;&gt;GNU General Public License&lt;/a&gt; (GNU GPL). Many of the programs required in an OS (such as libraries, &lt;a title=&quot;Compiler&quot; href=&quot;http://en.wikipedia.org/wiki/Compiler&quot;&gt;compilers&lt;/a&gt;, &lt;a title=&quot;Text editor&quot; href=&quot;http://en.wikipedia.org/wiki/Text_editor&quot;&gt;text editors&lt;/a&gt;, a &lt;a title=&quot;Unix shell&quot; href=&quot;http://en.wikipedia.org/wiki/Unix_shell&quot;&gt;Unix shell&lt;/a&gt;, and a windowing system) were completed by the early 1990s, although low level elements such as &lt;a title=&quot;Device driver&quot; href=&quot;http://en.wikipedia.org/wiki/Device_driver&quot;&gt;device drivers&lt;/a&gt;, &lt;a title=&quot;Daemon (computer software)&quot; href=&quot;http://en.wikipedia.org/wiki/Daemon_%28computer_software%29&quot;&gt;daemons&lt;/a&gt;, and the &lt;a title=&quot;Kernel (computer science)&quot; href=&quot;http://en.wikipedia.org/wiki/Kernel_%28computer_science%29&quot;&gt;kernel&lt;/a&gt; were stalled and incomplete.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-gnu_history-5&quot;&gt;[6]&lt;/a&gt; Linus Torvalds has said that if the GNU kernel had been available at the time (1991), he would not have decided to write his own&lt;br /&gt;&lt;a id=&quot;MINIX&quot; name=&quot;MINIX&quot;&gt;&lt;/a&gt;&lt;br /&gt;MINIX&lt;br /&gt;&lt;a title=&quot;MINIX&quot; href=&quot;http://en.wikipedia.org/wiki/MINIX&quot;&gt;MINIX&lt;/a&gt;, a Unix-like system intended for academic use, was released by &lt;a title=&quot;Andrew S. Tanenbaum&quot; href=&quot;http://en.wikipedia.org/wiki/Andrew_S._Tanenbaum&quot;&gt;Andrew S. Tanenbaum&lt;/a&gt; in 1987. While source code for the system was available, modification and redistribution were restricted (though that is not the case today). In addition, MINIX&#39;s &lt;a title=&quot;16-bit&quot; href=&quot;http://en.wikipedia.org/wiki/16-bit&quot;&gt;16-bit&lt;/a&gt; design was not well adapted to the &lt;a title=&quot;32-bit&quot; href=&quot;http://en.wikipedia.org/wiki/32-bit&quot;&gt;32-bit&lt;/a&gt; design of the increasingly cheap and popular &lt;a class=&quot;mw-redirect&quot; title=&quot;Intel 386&quot; href=&quot;http://en.wikipedia.org/wiki/Intel_386&quot;&gt;Intel 386&lt;/a&gt; architecture for personal computers.&lt;br /&gt;&lt;a class=&quot;image&quot; title=&quot;Linus Torvalds, creator of the Linux kernel.&quot; href=&quot;http://en.wikipedia.org/wiki/Image:Linus_Torvalds.jpeg&quot;&gt;&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;internal&quot; title=&quot;Enlarge&quot; href=&quot;http://en.wikipedia.org/wiki/Image:Linus_Torvalds.jpeg&quot;&gt;&lt;/a&gt;&lt;a title=&quot;Linus Torvalds&quot; href=&quot;http://en.wikipedia.org/wiki/Linus_Torvalds&quot;&gt;Linus Torvalds&lt;/a&gt;, creator of the &lt;a title=&quot;Linux kernel&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_kernel&quot;&gt;Linux kernel&lt;/a&gt;.&lt;br /&gt;In 1991, Torvalds began to work on a non-commercial replacement for MINIX while he was attending the &lt;a title=&quot;University of Helsinki&quot; href=&quot;http://en.wikipedia.org/wiki/University_of_Helsinki&quot;&gt;University of Helsinki&lt;/a&gt;.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-7&quot;&gt;[8]&lt;/a&gt; This eventually became the &lt;a title=&quot;Linux kernel&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_kernel&quot;&gt;Linux kernel&lt;/a&gt;.&lt;br /&gt;In 1992, Tanenbaum posted an article on &lt;a title=&quot;Usenet&quot; href=&quot;http://en.wikipedia.org/wiki/Usenet&quot;&gt;Usenet&lt;/a&gt; claiming Linux was obsolete. In the article, he criticized the operating system as being &lt;a title=&quot;Monolithic kernel&quot; href=&quot;http://en.wikipedia.org/wiki/Monolithic_kernel&quot;&gt;monolithic&lt;/a&gt; in design and being tied closely to the x86 architecture and thus not portable, as he described &quot;a fundamental error.&quot;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-deb-8&quot;&gt;[9]&lt;/a&gt; Tanenbaum suggested that those who wanted a modern operating system should look into one based on the &lt;a title=&quot;Microkernel&quot; href=&quot;http://en.wikipedia.org/wiki/Microkernel&quot;&gt;microkernel&lt;/a&gt; model. The posting elicited the response of Torvalds and &lt;a title=&quot;Ken Thompson&quot; href=&quot;http://en.wikipedia.org/wiki/Ken_Thompson&quot;&gt;Ken Thompson&lt;/a&gt;, one of the founders of &lt;a title=&quot;Unix&quot; href=&quot;http://en.wikipedia.org/wiki/Unix&quot;&gt;Unix&lt;/a&gt;, which resulted in a well known debate over the microkernel and monolithic kernel designs.&lt;br /&gt;Linux was dependent on the MINIX &lt;a title=&quot;User space&quot; href=&quot;http://en.wikipedia.org/wiki/User_space&quot;&gt;user space&lt;/a&gt; at first. With code from the GNU system freely available, it was advantageous if this could be used with the fledgling OS. Code licensed under the GNU GPL can be used in other projects, so long as they also are released under the same or a compatible license. In order to make the Linux kernel compatible with the components from the GNU Project, Torvalds initiated a switch from his original license (which prohibited commercial redistribution) to the GNU GPL.Linux and GNU developers worked to integrate GNU components with Linux to make a fully functional and free operating system.&lt;br /&gt;&lt;a id=&quot;Commercial_and_popular_uptake&quot; name=&quot;Commercial_and_popular_uptake&quot;&gt;&lt;/a&gt;&lt;br /&gt;Commercial and popular uptake&lt;br /&gt;Today Linux is used in numerous domains, from &lt;a title=&quot;Embedded system&quot; href=&quot;http://en.wikipedia.org/wiki/Embedded_system&quot;&gt;embedded systems&lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-10&quot;&gt;[11]&lt;/a&gt; to &lt;a title=&quot;Supercomputer&quot; href=&quot;http://en.wikipedia.org/wiki/Supercomputer&quot;&gt;supercomputers&lt;/a&gt;,&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-11&quot;&gt;[12]&lt;/a&gt; and has secured a place in &lt;a title=&quot;Server (computing)&quot; href=&quot;http://en.wikipedia.org/wiki/Server_%28computing%29&quot;&gt;server&lt;/a&gt; installations with the popular &lt;a title=&quot;LAMP (software bundle)&quot; href=&quot;http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29&quot;&gt;LAMP&lt;/a&gt; application stack.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-12&quot;&gt;[13]&lt;/a&gt; Torvalds continues to direct the development of the kernel. Stallman heads the Free Software Foundation, which in turn supports the GNU components. Finally, individuals and corporations develop third-party non-GNU components. These third-party components comprise a vast body of work and may include both kernel modules and user applications and libraries. Linux vendors and communities combine and distribute the kernel, GNU components, and non-GNU components, with additional package management software in the form of &lt;a title=&quot;Linux distribution&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_distribution&quot;&gt;Linux distributions&lt;/a&gt;.&lt;br /&gt;&lt;a id=&quot;Pronunciation&quot; name=&quot;Pronunciation&quot;&gt;&lt;/a&gt;&lt;br /&gt;Pronunciation&lt;br /&gt;In 1992, Torvalds explained how he pronounces the word Linux:&lt;br /&gt;&#39;li&#39; is pronounced with a short [ee] sound: compare prInt, mInImal etc. &#39;nux&#39; is also short, non-diphthong, like in pUt. It&#39;s partly due to minix: linux was just my working name for the thing, and as I wrote it to replace minix on my system, the result is what it is... linus&#39; minix became linux.&lt;br /&gt;—Linus Torvalds, comp.os.linux newsgroup&lt;br /&gt;Torvalds has made available an audio sample which indicates his own pronunciation, in English and Swedish.However, an interview from the &lt;a title=&quot;2001&quot; href=&quot;http://en.wikipedia.org/wiki/2001&quot;&gt;2001&lt;/a&gt; documentary &lt;a title=&quot;Revolution OS&quot; href=&quot;http://en.wikipedia.org/wiki/Revolution_OS&quot;&gt;Revolution OS&lt;/a&gt; indicates that his preferred pronunciation has slightly changed.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-16&quot;&gt;[17]&lt;/a&gt;&lt;br /&gt;Many English speakers tend to pronounce the name as [ˈlɪnʊks] or [ˈlɪnəks].&lt;br /&gt;&lt;a id=&quot;Design&quot; name=&quot;Design&quot;&gt;&lt;/a&gt;&lt;br /&gt;Design&lt;br /&gt;Linux is a modular &lt;a title=&quot;Unix-like&quot; href=&quot;http://en.wikipedia.org/wiki/Unix-like&quot;&gt;Unix-like&lt;/a&gt; operating system. It derives much of its basic design from principles established in Unix during the 1970s and 1980s. Linux uses a &lt;a title=&quot;Monolithic kernel&quot; href=&quot;http://en.wikipedia.org/wiki/Monolithic_kernel&quot;&gt;monolithic kernel&lt;/a&gt;, the &lt;a title=&quot;Linux kernel&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_kernel&quot;&gt;Linux kernel&lt;/a&gt;, which handles process control, networking, and &lt;a title=&quot;Peripheral&quot; href=&quot;http://en.wikipedia.org/wiki/Peripheral&quot;&gt;peripheral&lt;/a&gt; and &lt;a title=&quot;File system&quot; href=&quot;http://en.wikipedia.org/wiki/File_system&quot;&gt;file system&lt;/a&gt; access. &lt;a class=&quot;mw-redirect&quot; title=&quot;Device drivers&quot; href=&quot;http://en.wikipedia.org/wiki/Device_drivers&quot;&gt;Device drivers&lt;/a&gt; are integrated directly with the kernel.&lt;br /&gt;Much of Linux&#39;s higher-level functionality is provided by separate projects which interface with the kernel. The GNU &lt;a title=&quot;Userland (computing)&quot; href=&quot;http://en.wikipedia.org/wiki/Userland_%28computing%29&quot;&gt;userland&lt;/a&gt; is an important part of most Linux systems, providing the &lt;a title=&quot;Shell (computing)&quot; href=&quot;http://en.wikipedia.org/wiki/Shell_%28computing%29&quot;&gt;shell&lt;/a&gt; and &lt;a class=&quot;mw-redirect&quot; title=&quot;Unix tool&quot; href=&quot;http://en.wikipedia.org/wiki/Unix_tool&quot;&gt;Unix tools&lt;/a&gt; which carry out many basic operating system tasks. On top these tools form a Linux system with a &lt;a title=&quot;Graphical user interface&quot; href=&quot;http://en.wikipedia.org/wiki/Graphical_user_interface&quot;&gt;graphical user interface&lt;/a&gt; that can be used, usually running in the &lt;a title=&quot;X Window System&quot; href=&quot;http://en.wikipedia.org/wiki/X_Window_System&quot;&gt;X Window System&lt;/a&gt;.&lt;br /&gt;&lt;a id=&quot;User_interface&quot; name=&quot;User_interface&quot;&gt;&lt;/a&gt;&lt;br /&gt;User interface&lt;br /&gt;Linux can be controlled by one or more of a text-based &lt;a title=&quot;Command line interface&quot; href=&quot;http://en.wikipedia.org/wiki/Command_line_interface&quot;&gt;command line interface&lt;/a&gt; (CLI), &lt;a title=&quot;Graphical user interface&quot; href=&quot;http://en.wikipedia.org/wiki/Graphical_user_interface&quot;&gt;graphical user interface&lt;/a&gt; (GUI) (usually the default for desktop), or through controls on the device itself (common on embedded machines).&lt;br /&gt;On desktop machines, &lt;a title=&quot;KDE&quot; href=&quot;http://en.wikipedia.org/wiki/KDE&quot;&gt;KDE&lt;/a&gt;, &lt;a title=&quot;GNOME&quot; href=&quot;http://en.wikipedia.org/wiki/GNOME&quot;&gt;GNOME&lt;/a&gt; and &lt;a title=&quot;Xfce&quot; href=&quot;http://en.wikipedia.org/wiki/Xfce&quot;&gt;Xfce&lt;/a&gt; are the most popular user interfaces,&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-17&quot;&gt;[18]&lt;/a&gt; though a variety of other user interfaces exist. Most popular user interfaces run on top of the &lt;a title=&quot;X Window System&quot; href=&quot;http://en.wikipedia.org/wiki/X_Window_System&quot;&gt;X Window System&lt;/a&gt; (X), which provides &lt;a title=&quot;Network transparency&quot; href=&quot;http://en.wikipedia.org/wiki/Network_transparency&quot;&gt;network transparency&lt;/a&gt;, enabling a graphical application running on one machine to be displayed and controlled from another.&lt;br /&gt;Other GUIs include &lt;a title=&quot;X window manager&quot; href=&quot;http://en.wikipedia.org/wiki/X_window_manager&quot;&gt;X window managers&lt;/a&gt; such as &lt;a title=&quot;FVWM&quot; href=&quot;http://en.wikipedia.org/wiki/FVWM&quot;&gt;FVWM&lt;/a&gt;, &lt;a title=&quot;Enlightenment (window manager)&quot; href=&quot;http://en.wikipedia.org/wiki/Enlightenment_%28window_manager%29&quot;&gt;Enlightenment&lt;/a&gt; and &lt;a title=&quot;Window Maker&quot; href=&quot;http://en.wikipedia.org/wiki/Window_Maker&quot;&gt;Window Maker&lt;/a&gt;. The window manager provides a means to control the placement and appearance of individual application windows, and interacts with the X window system.&lt;br /&gt;A Linux system usually provides a &lt;a title=&quot;CLI&quot; href=&quot;http://en.wikipedia.org/wiki/CLI&quot;&gt;CLI&lt;/a&gt; of some sort through a &lt;a title=&quot;Shell (computing)&quot; href=&quot;http://en.wikipedia.org/wiki/Shell_%28computing%29&quot;&gt;shell&lt;/a&gt;, which is the traditional way of interacting with a Unix system. A Linux distribution specialized for servers may use the CLI as its only interface. A “headless system” run without even a monitor can be controlled by the command line via a protocol such as &lt;a title=&quot;Secure Shell&quot; href=&quot;http://en.wikipedia.org/wiki/Secure_Shell&quot;&gt;SSH&lt;/a&gt; or &lt;a class=&quot;mw-redirect&quot; title=&quot;Telnet&quot; href=&quot;http://en.wikipedia.org/wiki/Telnet&quot;&gt;telnet&lt;/a&gt;.&lt;br /&gt;Most low-level Linux components, including the GNU &lt;a title=&quot;Userland (computing)&quot; href=&quot;http://en.wikipedia.org/wiki/Userland_%28computing%29&quot;&gt;Userland&lt;/a&gt;, use the CLI exclusively. The CLI is particularly suited for automation of repetitive or delayed tasks, and provides very simple &lt;a title=&quot;Inter-process communication&quot; href=&quot;http://en.wikipedia.org/wiki/Inter-process_communication&quot;&gt;inter-process communication&lt;/a&gt;. A graphical &lt;a title=&quot;Terminal emulator&quot; href=&quot;http://en.wikipedia.org/wiki/Terminal_emulator&quot;&gt;terminal emulator&lt;/a&gt; program is often used to access the CLI from a Linux desktop.&lt;br /&gt;&lt;a id=&quot;Development&quot; name=&quot;Development&quot;&gt;&lt;/a&gt;&lt;br /&gt;Development&lt;br /&gt;A summarised history of &lt;a title=&quot;Unix-like&quot; href=&quot;http://en.wikipedia.org/wiki/Unix-like&quot;&gt;Unix-like&lt;/a&gt; operating systems showing Linux&#39;s origins. Note that despite similar architectural designs and concepts being shared as part of the &lt;a title=&quot;POSIX&quot; href=&quot;http://en.wikipedia.org/wiki/POSIX&quot;&gt;POSIX&lt;/a&gt; standard, Linux does not share any non-free source code with the original &lt;a title=&quot;Unix&quot; href=&quot;http://en.wikipedia.org/wiki/Unix&quot;&gt;Unix&lt;/a&gt; nor &lt;a class=&quot;mw-redirect&quot; title=&quot;Minix&quot; href=&quot;http://en.wikipedia.org/wiki/Minix&quot;&gt;Minix&lt;/a&gt;.&lt;br /&gt;The primary difference between Linux and many other popular contemporary operating systems is that the &lt;a title=&quot;Linux kernel&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_kernel&quot;&gt;Linux kernel&lt;/a&gt; and other components are &lt;a title=&quot;Free software&quot; href=&quot;http://en.wikipedia.org/wiki/Free_software&quot;&gt;free&lt;/a&gt; and &lt;a title=&quot;Open source software&quot; href=&quot;http://en.wikipedia.org/wiki/Open_source_software&quot;&gt;open source software&lt;/a&gt;. Linux is not the only such operating system, although it is the best-known and most widely used. Some &lt;a class=&quot;mw-redirect&quot; title=&quot;Free software license&quot; href=&quot;http://en.wikipedia.org/wiki/Free_software_license&quot;&gt;free&lt;/a&gt; and &lt;a title=&quot;Open source license&quot; href=&quot;http://en.wikipedia.org/wiki/Open_source_license&quot;&gt;open source&lt;/a&gt; software licences are based on the principle of &lt;a title=&quot;Copyleft&quot; href=&quot;http://en.wikipedia.org/wiki/Copyleft&quot;&gt;copyleft&lt;/a&gt;, a kind of reciprocity: any work derived from a copyleft piece of software must also be copyleft itself. The most common free software license, the &lt;a class=&quot;mw-redirect&quot; title=&quot;GNU GPL&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_GPL&quot;&gt;GNU GPL&lt;/a&gt;, is a form of copyleft, and is used for the Linux kernel and many of the components from the &lt;a class=&quot;mw-redirect&quot; title=&quot;GNU project&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_project&quot;&gt;GNU project&lt;/a&gt;.&lt;br /&gt;Linux systems adhere to &lt;a title=&quot;POSIX&quot; href=&quot;http://en.wikipedia.org/wiki/POSIX&quot;&gt;POSIX&lt;/a&gt;, &lt;a title=&quot;Single UNIX Specification&quot; href=&quot;http://en.wikipedia.org/wiki/Single_UNIX_Specification&quot;&gt;SUS&lt;/a&gt;,&lt;a title=&quot;International Organization for Standardization&quot; href=&quot;http://en.wikipedia.org/wiki/International_Organization_for_Standardization&quot;&gt;ISO&lt;/a&gt; and &lt;a title=&quot;American National Standards Institute&quot; href=&quot;http://en.wikipedia.org/wiki/American_National_Standards_Institute&quot;&gt;ANSI&lt;/a&gt; standards where possible. To date, however, only the Linux-FT distribution has been POSIX.1 certified.&lt;br /&gt;Free software projects, although developed in a &lt;a title=&quot;Collaboration&quot; href=&quot;http://en.wikipedia.org/wiki/Collaboration&quot;&gt;collaborative&lt;/a&gt; fashion, are often produced independently of each other. However, given that the software licenses explicitly permit redistribution, this provides a basis for larger scale projects that collect the software produced by stand-alone projects and make it available all at once in the form of a &lt;a title=&quot;Linux distribution&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_distribution&quot;&gt;Linux distribution&lt;/a&gt;.&lt;br /&gt;A &lt;a title=&quot;Linux distribution&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_distribution&quot;&gt;Linux distribution&lt;/a&gt;, commonly called a “distro”, is a project that manages a remote collection of Linux-based software, and facilitates installation of a Linux operating system. Distributions are maintained by individuals, loose-knit teams, volunteer organizations, and commercial entities. They include system software and &lt;a title=&quot;Application software&quot; href=&quot;http://en.wikipedia.org/wiki/Application_software&quot;&gt;application software&lt;/a&gt; in the form of packages, and distribution-specific software for initial system installation and configuration as well as later package upgrades and installs. A distribution is responsible for the default configuration of installed Linux systems, system security, and more generally integration of the different software packages into a coherent whole.&lt;br /&gt;&lt;a id=&quot;Community&quot; name=&quot;Community&quot;&gt;&lt;/a&gt;&lt;br /&gt;Community&lt;br /&gt;Linux is largely driven by its developer and user communities. Some vendors develop and fund their distributions on a volunteer basis, &lt;a title=&quot;Debian&quot; href=&quot;http://en.wikipedia.org/wiki/Debian&quot;&gt;Debian&lt;/a&gt; being a well-known example. Others maintain a community version of their commercial distributions, as &lt;a title=&quot;Red Hat&quot; href=&quot;http://en.wikipedia.org/wiki/Red_Hat&quot;&gt;Red Hat&lt;/a&gt; does with &lt;a title=&quot;Fedora (Linux distribution)&quot; href=&quot;http://en.wikipedia.org/wiki/Fedora_%28Linux_distribution%29&quot;&gt;Fedora&lt;/a&gt;.&lt;br /&gt;In many cities and regions, local associations known as &lt;a class=&quot;mw-redirect&quot; title=&quot;Linux Users Group&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_Users_Group&quot;&gt;Linux Users Groups&lt;/a&gt; (LUGs) seek to promote Linux and by extension free software. They hold meetings and provide free demonstrations, training, technical support, and operating system installation to new users. There are also many &lt;a title=&quot;Internet&quot; href=&quot;http://en.wikipedia.org/wiki/Internet&quot;&gt;Internet&lt;/a&gt; communities that seek to provide support to Linux users and developers. Most distributions and open source projects have &lt;a class=&quot;mw-redirect&quot; title=&quot;IRC&quot; href=&quot;http://en.wikipedia.org/wiki/IRC&quot;&gt;IRC&lt;/a&gt; chatrooms or &lt;a class=&quot;mw-redirect&quot; title=&quot;Newsgroup&quot; href=&quot;http://en.wikipedia.org/wiki/Newsgroup&quot;&gt;newsgroups&lt;/a&gt;. &lt;a class=&quot;mw-redirect&quot; title=&quot;Online forum&quot; href=&quot;http://en.wikipedia.org/wiki/Online_forum&quot;&gt;Online forums&lt;/a&gt; are another means for support, with notable examples being &lt;a title=&quot;LinuxQuestions.org&quot; href=&quot;http://en.wikipedia.org/wiki/LinuxQuestions.org&quot;&gt;LinuxQuestions.org&lt;/a&gt; and the &lt;a title=&quot;Gentoo Linux&quot; href=&quot;http://en.wikipedia.org/wiki/Gentoo_Linux&quot;&gt;Gentoo&lt;/a&gt; forums. Linux distributions host &lt;a title=&quot;Mailing list&quot; href=&quot;http://en.wikipedia.org/wiki/Mailing_list&quot;&gt;mailing lists&lt;/a&gt;; commonly there will be a specific topic such as usage or development for a given list.&lt;br /&gt;There are several technology websites with a Linux focus. &lt;a class=&quot;mw-redirect&quot; title=&quot;Linux Weekly News&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_Weekly_News&quot;&gt;Linux Weekly News&lt;/a&gt; is a weekly digest of Linux-related news; the &lt;a title=&quot;Linux Journal&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_Journal&quot;&gt;Linux Journal&lt;/a&gt; is an online magazine of Linux articles published monthly; &lt;a title=&quot;Slashdot&quot; href=&quot;http://en.wikipedia.org/wiki/Slashdot&quot;&gt;Slashdot&lt;/a&gt; is a technology-related news website with many stories on Linux and open source software; &lt;a title=&quot;Groklaw&quot; href=&quot;http://en.wikipedia.org/wiki/Groklaw&quot;&gt;Groklaw&lt;/a&gt; has written in depth about Linux-related legal proceedings and there are many articles relevant to the Linux kernel and its relationship with &lt;a title=&quot;GNU&quot; href=&quot;http://en.wikipedia.org/wiki/GNU&quot;&gt;GNU&lt;/a&gt; on the &lt;a title=&quot;GNU Project&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_Project&quot;&gt;GNU project&#39;s&lt;/a&gt; website. Print &lt;a title=&quot;Magazine&quot; href=&quot;http://en.wikipedia.org/wiki/Magazine&quot;&gt;magazines&lt;/a&gt; on Linux often include &lt;a class=&quot;mw-redirect&quot; title=&quot;Cover disk&quot; href=&quot;http://en.wikipedia.org/wiki/Cover_disk&quot;&gt;cover disks&lt;/a&gt; including software or even complete Linux distributions.&lt;br /&gt;Although Linux is generally available free of charge, several large corporations have established business models that involve selling, supporting, and contributing to Linux and free software. These include &lt;a title=&quot;Dell&quot; href=&quot;http://en.wikipedia.org/wiki/Dell&quot;&gt;Dell&lt;/a&gt;, &lt;a title=&quot;IBM&quot; href=&quot;http://en.wikipedia.org/wiki/IBM&quot;&gt;IBM&lt;/a&gt;, &lt;a title=&quot;Hewlett-Packard&quot; href=&quot;http://en.wikipedia.org/wiki/Hewlett-Packard&quot;&gt;HP&lt;/a&gt;, &lt;a title=&quot;Sun Microsystems&quot; href=&quot;http://en.wikipedia.org/wiki/Sun_Microsystems&quot;&gt;Sun Microsystems&lt;/a&gt;, &lt;a title=&quot;Novell&quot; href=&quot;http://en.wikipedia.org/wiki/Novell&quot;&gt;Novell&lt;/a&gt;, and &lt;a title=&quot;Red Hat&quot; href=&quot;http://en.wikipedia.org/wiki/Red_Hat&quot;&gt;Red Hat&lt;/a&gt;. The free software licenses on which Linux is based explicitly accommodate and encourage commercialization; the relationship between Linux as a whole and individual vendors may be seen as &lt;a title=&quot;Symbiosis&quot; href=&quot;http://en.wikipedia.org/wiki/Symbiosis&quot;&gt;symbiotic&lt;/a&gt;. One common business model of commercial suppliers is charging for support, especially for business users. A number of companies also offer a specialized business version of their distribution, which adds proprietary support packages and tools to administer higher numbers of installations or to simplify administrative tasks. Another business model is to give away the software in order to sell hardware.&lt;br /&gt;&lt;a id=&quot;Programming_on_Linux&quot; name=&quot;Programming_on_Linux&quot;&gt;&lt;/a&gt;&lt;br /&gt;Programming on Linux&lt;br /&gt;Most Linux distributions support dozens of &lt;a title=&quot;Programming language&quot; href=&quot;http://en.wikipedia.org/wiki/Programming_language&quot;&gt;programming languages&lt;/a&gt;. The most common collection of utilities for building both Linux applications and operating system programs is found within the &lt;a title=&quot;GNU toolchain&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_toolchain&quot;&gt;GNU toolchain&lt;/a&gt;, which includes the &lt;a title=&quot;GNU Compiler Collection&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_Compiler_Collection&quot;&gt;GNU Compiler Collection&lt;/a&gt; (GCC) and the &lt;a title=&quot;GNU build system&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_build_system&quot;&gt;GNU build system&lt;/a&gt;. Amongst others, GCC provides compilers for &lt;a title=&quot;Ada (programming language)&quot; href=&quot;http://en.wikipedia.org/wiki/Ada_%28programming_language%29&quot;&gt;Ada&lt;/a&gt;, &lt;a title=&quot;C (programming language)&quot; href=&quot;http://en.wikipedia.org/wiki/C_%28programming_language%29&quot;&gt;C&lt;/a&gt;, &lt;a title=&quot;C++&quot; href=&quot;http://en.wikipedia.org/wiki/C%2B%2B&quot;&gt;C++&lt;/a&gt;, &lt;a title=&quot;Java (programming language)&quot; href=&quot;http://en.wikipedia.org/wiki/Java_%28programming_language%29&quot;&gt;Java&lt;/a&gt;, and &lt;a title=&quot;Fortran&quot; href=&quot;http://en.wikipedia.org/wiki/Fortran&quot;&gt;Fortran&lt;/a&gt;. The Linux kernel itself is written to be compiled with GCC. &lt;a title=&quot;Proprietary software&quot; href=&quot;http://en.wikipedia.org/wiki/Proprietary_software&quot;&gt;Proprietary&lt;/a&gt; compilers for Linux include the &lt;a title=&quot;Intel C++ Compiler&quot; href=&quot;http://en.wikipedia.org/wiki/Intel_C%2B%2B_Compiler&quot;&gt;Intel C++ Compiler&lt;/a&gt; and IBM XL C/C++ Compiler.&lt;br /&gt;Most distributions also include support for &lt;a title=&quot;Perl&quot; href=&quot;http://en.wikipedia.org/wiki/Perl&quot;&gt;Perl&lt;/a&gt;, &lt;a class=&quot;mw-redirect&quot; title=&quot;Ruby programming language&quot; href=&quot;http://en.wikipedia.org/wiki/Ruby_programming_language&quot;&gt;Ruby&lt;/a&gt;, &lt;a class=&quot;mw-redirect&quot; title=&quot;Python programming language&quot; href=&quot;http://en.wikipedia.org/wiki/Python_programming_language&quot;&gt;Python&lt;/a&gt; and other &lt;a title=&quot;Dynamic programming language&quot; href=&quot;http://en.wikipedia.org/wiki/Dynamic_programming_language&quot;&gt;dynamic languages&lt;/a&gt;. Examples of languages that are less common, but still well-supported, are &lt;a title=&quot;C Sharp (programming language)&quot; href=&quot;http://en.wikipedia.org/wiki/C_Sharp_%28programming_language%29&quot;&gt;C#&lt;/a&gt; via the &lt;a title=&quot;Mono (software)&quot; href=&quot;http://en.wikipedia.org/wiki/Mono_%28software%29&quot;&gt;Mono&lt;/a&gt; project, and &lt;a class=&quot;mw-redirect&quot; title=&quot;Scheme programming language&quot; href=&quot;http://en.wikipedia.org/wiki/Scheme_programming_language&quot;&gt;Scheme&lt;/a&gt;. A number of &lt;a title=&quot;Java Virtual Machine&quot; href=&quot;http://en.wikipedia.org/wiki/Java_Virtual_Machine&quot;&gt;Java Virtual Machines&lt;/a&gt; and development kits run on Linux, including the original Sun Microsystems JVM (&lt;a title=&quot;HotSpot&quot; href=&quot;http://en.wikipedia.org/wiki/HotSpot&quot;&gt;HotSpot&lt;/a&gt;), and IBM&#39;s J2SE RE, as well as many open-source projects like &lt;a title=&quot;Kaffe&quot; href=&quot;http://en.wikipedia.org/wiki/Kaffe&quot;&gt;Kaffe&lt;/a&gt;. The two main frameworks for developing graphical applications are those of &lt;a title=&quot;GNOME&quot; href=&quot;http://en.wikipedia.org/wiki/GNOME&quot;&gt;GNOME&lt;/a&gt; and &lt;a title=&quot;KDE&quot; href=&quot;http://en.wikipedia.org/wiki/KDE&quot;&gt;KDE&lt;/a&gt;. These projects are based on the &lt;a title=&quot;GTK+&quot; href=&quot;http://en.wikipedia.org/wiki/GTK%2B&quot;&gt;GTK+&lt;/a&gt; and &lt;a title=&quot;Qt (toolkit)&quot; href=&quot;http://en.wikipedia.org/wiki/Qt_%28toolkit%29&quot;&gt;Qt&lt;/a&gt; &lt;a title=&quot;Widget toolkit&quot; href=&quot;http://en.wikipedia.org/wiki/Widget_toolkit&quot;&gt;widget toolkits&lt;/a&gt;, respectively, which can also be used independently of the larger framework. Both support a wide variety of languages. There are a number of &lt;a title=&quot;Integrated development environment&quot; href=&quot;http://en.wikipedia.org/wiki/Integrated_development_environment&quot;&gt;Integrated development environments&lt;/a&gt; available including &lt;a title=&quot;Anjuta&quot; href=&quot;http://en.wikipedia.org/wiki/Anjuta&quot;&gt;Anjuta&lt;/a&gt;, &lt;a title=&quot;Code::Blocks&quot; href=&quot;http://en.wikipedia.org/wiki/Code::Blocks&quot;&gt;Code::Blocks&lt;/a&gt;, &lt;a class=&quot;mw-redirect&quot; title=&quot;Eclipse (computing)&quot; href=&quot;http://en.wikipedia.org/wiki/Eclipse_%28computing%29&quot;&gt;Eclipse&lt;/a&gt;, &lt;a title=&quot;KDevelop&quot; href=&quot;http://en.wikipedia.org/wiki/KDevelop&quot;&gt;KDevelop&lt;/a&gt;, &lt;a title=&quot;Lazarus (software)&quot; href=&quot;http://en.wikipedia.org/wiki/Lazarus_%28software%29&quot;&gt;Lazarus&lt;/a&gt;, &lt;a title=&quot;MonoDevelop&quot; href=&quot;http://en.wikipedia.org/wiki/MonoDevelop&quot;&gt;MonoDevelop&lt;/a&gt;, &lt;a title=&quot;NetBeans&quot; href=&quot;http://en.wikipedia.org/wiki/NetBeans&quot;&gt;NetBeans&lt;/a&gt;, and &lt;a title=&quot;Omnis Studio&quot; href=&quot;http://en.wikipedia.org/wiki/Omnis_Studio&quot;&gt;Omnis Studio&lt;/a&gt; while the long-established editors &lt;a title=&quot;Vim (text editor)&quot; href=&quot;http://en.wikipedia.org/wiki/Vim_%28text_editor%29&quot;&gt;Vim&lt;/a&gt; and &lt;a title=&quot;Emacs&quot; href=&quot;http://en.wikipedia.org/wiki/Emacs&quot;&gt;Emacs&lt;/a&gt; remain popular.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-23&quot;&gt;[24]&lt;/a&gt;&lt;br /&gt;&lt;a id=&quot;Uses&quot; name=&quot;Uses&quot;&gt;&lt;/a&gt;&lt;br /&gt;Uses&lt;br /&gt;As well as those designed for general purpose use on desktops and servers, distributions may be specialized for different purposes including: &lt;a title=&quot;Computer architecture&quot; href=&quot;http://en.wikipedia.org/wiki/Computer_architecture&quot;&gt;computer architecture&lt;/a&gt; support, &lt;a title=&quot;Embedded Linux&quot; href=&quot;http://en.wikipedia.org/wiki/Embedded_Linux&quot;&gt;embedded systems&lt;/a&gt;, stability, security, localization to a specific region or language, targeting of specific user groups, support for &lt;a title=&quot;Real-time computing&quot; href=&quot;http://en.wikipedia.org/wiki/Real-time_computing&quot;&gt;real-time&lt;/a&gt; applications, or commitment to a given desktop environment. Furthermore, some distributions deliberately include only &lt;a title=&quot;Free software&quot; href=&quot;http://en.wikipedia.org/wiki/Free_software&quot;&gt;free software&lt;/a&gt;. Currently, over three hundred distributions are actively developed, with about a dozen distributions being most popular for general-purpose use.&lt;br /&gt;Linux is a widely &lt;a title=&quot;Porting&quot; href=&quot;http://en.wikipedia.org/wiki/Porting&quot;&gt;ported&lt;/a&gt; operating system. While the Linux kernel was originally designed only for &lt;a title=&quot;Intel 80386&quot; href=&quot;http://en.wikipedia.org/wiki/Intel_80386&quot;&gt;Intel 80386&lt;/a&gt; &lt;a title=&quot;Microprocessor&quot; href=&quot;http://en.wikipedia.org/wiki/Microprocessor&quot;&gt;microprocessors&lt;/a&gt;, it now runs on a more diverse range of &lt;a title=&quot;Computer architecture&quot; href=&quot;http://en.wikipedia.org/wiki/Computer_architecture&quot;&gt;computer architectures&lt;/a&gt; than any other operating system: in the hand-held &lt;a title=&quot;ARM architecture&quot; href=&quot;http://en.wikipedia.org/wiki/ARM_architecture&quot;&gt;ARM&lt;/a&gt;-based &lt;a title=&quot;IPAQ&quot; href=&quot;http://en.wikipedia.org/wiki/IPAQ&quot;&gt;iPAQ&lt;/a&gt; and the &lt;a title=&quot;Mainframe computer&quot; href=&quot;http://en.wikipedia.org/wiki/Mainframe_computer&quot;&gt;mainframe&lt;/a&gt; &lt;a title=&quot;IBM&quot; href=&quot;http://en.wikipedia.org/wiki/IBM&quot;&gt;IBM&lt;/a&gt; &lt;a class=&quot;mw-redirect&quot; title=&quot;System z9&quot; href=&quot;http://en.wikipedia.org/wiki/System_z9&quot;&gt;System z9&lt;/a&gt;, in devices ranging from &lt;a title=&quot;Mobile phone&quot; href=&quot;http://en.wikipedia.org/wiki/Mobile_phone&quot;&gt;mobile phones&lt;/a&gt; to &lt;a title=&quot;Supercomputer&quot; href=&quot;http://en.wikipedia.org/wiki/Supercomputer&quot;&gt;supercomputers&lt;/a&gt;.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-25&quot;&gt;[26]&lt;/a&gt; Specialized distributions exist for less mainstream architectures. The &lt;a class=&quot;mw-redirect&quot; title=&quot;ELKS&quot; href=&quot;http://en.wikipedia.org/wiki/ELKS&quot;&gt;ELKS&lt;/a&gt; kernel &lt;a title=&quot;Fork (software development)&quot; href=&quot;http://en.wikipedia.org/wiki/Fork_%28software_development%29&quot;&gt;fork&lt;/a&gt; can run on &lt;a title=&quot;Intel 8086&quot; href=&quot;http://en.wikipedia.org/wiki/Intel_8086&quot;&gt;Intel 8086&lt;/a&gt; or &lt;a title=&quot;Intel 80286&quot; href=&quot;http://en.wikipedia.org/wiki/Intel_80286&quot;&gt;Intel 80286&lt;/a&gt; &lt;a title=&quot;16-bit&quot; href=&quot;http://en.wikipedia.org/wiki/16-bit&quot;&gt;16-bit&lt;/a&gt; microprocessors, while the &lt;a title=&quot;ΜClinux&quot; href=&quot;http://en.wikipedia.org/wiki/%CE%9CClinux&quot;&gt;µClinux&lt;/a&gt; kernel fork may run on systems without a &lt;a title=&quot;Memory management unit&quot; href=&quot;http://en.wikipedia.org/wiki/Memory_management_unit&quot;&gt;memory management unit&lt;/a&gt;. The kernel also runs on architectures that were only ever intended to use a manufacturer-created operating system, such as &lt;a title=&quot;Macintosh&quot; href=&quot;http://en.wikipedia.org/wiki/Macintosh&quot;&gt;Macintosh&lt;/a&gt; computers, &lt;a title=&quot;Personal digital assistant&quot; href=&quot;http://en.wikipedia.org/wiki/Personal_digital_assistant&quot;&gt;PDAs&lt;/a&gt;, &lt;a title=&quot;Video game console&quot; href=&quot;http://en.wikipedia.org/wiki/Video_game_console&quot;&gt;video game consoles&lt;/a&gt;, &lt;a title=&quot;Digital audio player&quot; href=&quot;http://en.wikipedia.org/wiki/Digital_audio_player&quot;&gt;portable music players&lt;/a&gt;, and &lt;a title=&quot;Mobile phone&quot; href=&quot;http://en.wikipedia.org/wiki/Mobile_phone&quot;&gt;mobile phones&lt;/a&gt;.&lt;br /&gt;&lt;a id=&quot;Desktop&quot; name=&quot;Desktop&quot;&gt;&lt;/a&gt;&lt;br /&gt;Although there is a lack of Linux ports for some &lt;a title=&quot;Mac OS X&quot; href=&quot;http://en.wikipedia.org/wiki/Mac_OS_X&quot;&gt;Mac OS X&lt;/a&gt; and &lt;a title=&quot;Microsoft Windows&quot; href=&quot;http://en.wikipedia.org/wiki/Microsoft_Windows&quot;&gt;Microsoft Windows&lt;/a&gt; programs in domains such as &lt;a title=&quot;Desktop publishing&quot; href=&quot;http://en.wikipedia.org/wiki/Desktop_publishing&quot;&gt;desktop publishing&lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-26&quot;&gt;[27]&lt;/a&gt; and &lt;a title=&quot;Professional audio&quot; href=&quot;http://en.wikipedia.org/wiki/Professional_audio&quot;&gt;professional audio&lt;/a&gt;,&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-27&quot;&gt;[28]&lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-28&quot;&gt;[29]&lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-29&quot;&gt;[30]&lt;/a&gt; applications equivalent to those available for Mac and Windows are available for Linux.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-30&quot;&gt;[31]&lt;/a&gt;&lt;br /&gt;Most Linux distributions provide a program for browsing a list of thousands of &lt;a title=&quot;Free software&quot; href=&quot;http://en.wikipedia.org/wiki/Free_software&quot;&gt;free software&lt;/a&gt; applications that have already been tested and configured for a specific distribution. These free programs can be downloaded and installed with one mouse click and a digital signature guarantees that no one has added a virus or a spyware to these programs.&lt;br /&gt;Many &lt;a title=&quot;Free software&quot; href=&quot;http://en.wikipedia.org/wiki/Free_software&quot;&gt;free software&lt;/a&gt; titles that are popular on Windows, such as &lt;a title=&quot;Pidgin (software)&quot; href=&quot;http://en.wikipedia.org/wiki/Pidgin_%28software%29&quot;&gt;Pidgin&lt;/a&gt;, &lt;a title=&quot;Mozilla Firefox&quot; href=&quot;http://en.wikipedia.org/wiki/Mozilla_Firefox&quot;&gt;Mozilla Firefox&lt;/a&gt;, &lt;a class=&quot;mw-redirect&quot; title=&quot;Openoffice.org&quot; href=&quot;http://en.wikipedia.org/wiki/Openoffice.org&quot;&gt;Openoffice.org&lt;/a&gt;, and &lt;a title=&quot;GIMP&quot; href=&quot;http://en.wikipedia.org/wiki/GIMP&quot;&gt;GIMP&lt;/a&gt;, are available for Linux. A growing amount of proprietary desktop software is also supported under Linux,&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-31&quot;&gt;[32]&lt;/a&gt; examples being &lt;a title=&quot;Adobe Flash Player&quot; href=&quot;http://en.wikipedia.org/wiki/Adobe_Flash_Player&quot;&gt;Adobe Flash Player&lt;/a&gt;, &lt;a title=&quot;Adobe Acrobat&quot; href=&quot;http://en.wikipedia.org/wiki/Adobe_Acrobat&quot;&gt;Acrobat Reader&lt;/a&gt;, &lt;a class=&quot;mw-redirect&quot; title=&quot;Matlab&quot; href=&quot;http://en.wikipedia.org/wiki/Matlab&quot;&gt;Matlab&lt;/a&gt;, &lt;a title=&quot;Nero Burning ROM&quot; href=&quot;http://en.wikipedia.org/wiki/Nero_Burning_ROM&quot;&gt;Nero Burning ROM&lt;/a&gt;, &lt;a title=&quot;Opera (web browser)&quot; href=&quot;http://en.wikipedia.org/wiki/Opera_%28web_browser%29&quot;&gt;Opera&lt;/a&gt;, &lt;a class=&quot;mw-redirect&quot; title=&quot;Google Picasa&quot; href=&quot;http://en.wikipedia.org/wiki/Google_Picasa&quot;&gt;Google Picasa&lt;/a&gt;, &lt;a title=&quot;RealPlayer&quot; href=&quot;http://en.wikipedia.org/wiki/RealPlayer&quot;&gt;RealPlayer&lt;/a&gt;, and &lt;a title=&quot;Skype&quot; href=&quot;http://en.wikipedia.org/wiki/Skype&quot;&gt;Skype&lt;/a&gt;. In the field of animation and visual effects, most high end software, such as AutoDesk Maya, Softimage XSI and Apple Shake, is available for Linux, Windows and/or Mac OS X. &lt;a title=&quot;CrossOver&quot; href=&quot;http://en.wikipedia.org/wiki/CrossOver&quot;&gt;CrossOver&lt;/a&gt; is a proprietary solution based on the open source &lt;a title=&quot;Wine (software)&quot; href=&quot;http://en.wikipedia.org/wiki/Wine_%28software%29&quot;&gt;Wine&lt;/a&gt; project that supports running older Windows versions of &lt;a title=&quot;Microsoft Office&quot; href=&quot;http://en.wikipedia.org/wiki/Microsoft_Office&quot;&gt;Microsoft Office&lt;/a&gt; and &lt;a title=&quot;Adobe Photoshop&quot; href=&quot;http://en.wikipedia.org/wiki/Adobe_Photoshop&quot;&gt;Adobe Photoshop&lt;/a&gt; versions through CS2. &lt;a title=&quot;Microsoft Office 2007&quot; href=&quot;http://en.wikipedia.org/wiki/Microsoft_Office_2007&quot;&gt;Microsoft Office 2007&lt;/a&gt; and Adobe Photoshop CS3 are known not to work.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-32&quot;&gt;[33]&lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-33&quot;&gt;[34]&lt;/a&gt;&lt;br /&gt;Besides the free Windows compatibility layer &lt;a title=&quot;Wine (software)&quot; href=&quot;http://en.wikipedia.org/wiki/Wine_%28software%29&quot;&gt;Wine&lt;/a&gt;, most distributions offer &lt;a title=&quot;Dual boot&quot; href=&quot;http://en.wikipedia.org/wiki/Dual_boot&quot;&gt;Dual boot&lt;/a&gt; and &lt;a title=&quot;X86 virtualization&quot; href=&quot;http://en.wikipedia.org/wiki/X86_virtualization&quot;&gt;X86 virtualization&lt;/a&gt; for running both Linux and Windows on the same computer.&lt;br /&gt;Linux&#39;s open nature allows distributed teams to &lt;a class=&quot;mw-redirect&quot; title=&quot;L10n&quot; href=&quot;http://en.wikipedia.org/wiki/L10n&quot;&gt;localize&lt;/a&gt; Linux distributions for use in locales where localizing proprietary systems would not be cost-effective. For example the &lt;a title=&quot;Sinhalese language&quot; href=&quot;http://en.wikipedia.org/wiki/Sinhalese_language&quot;&gt;Sinhalese language&lt;/a&gt; version of the &lt;a title=&quot;Knoppix&quot; href=&quot;http://en.wikipedia.org/wiki/Knoppix&quot;&gt;Knoppix&lt;/a&gt; distribution was available for a long time before &lt;a class=&quot;mw-redirect&quot; title=&quot;Microsoft Windows XP&quot; href=&quot;http://en.wikipedia.org/wiki/Microsoft_Windows_XP&quot;&gt;Microsoft Windows XP&lt;/a&gt; was translated to Sinhalese. In this case the Lanka Linux User Group played a major part in developing the localized system by combining the knowledge of university professors, &lt;a title=&quot;Linguist&quot; href=&quot;http://en.wikipedia.org/wiki/Linguist&quot;&gt;linguists&lt;/a&gt;, and local developers.&lt;br /&gt;The performance of Linux on the desktop has been a controversial topic, with at least one key Linux kernel developer, Con Kolivas, accusing the Linux community of favouring performance on servers. He quit Linux development because he was frustrated with this lack of focus on the desktop, and then gave a &#39;tell all&#39; interview on the topic.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-34&quot;&gt;[35]&lt;/a&gt;&lt;br /&gt;See also: &lt;a title=&quot;Linux gaming&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_gaming&quot;&gt;Linux gaming&lt;/a&gt;&lt;br /&gt;&lt;a id=&quot;Servers_and_supercomputers&quot; name=&quot;Servers_and_supercomputers&quot;&gt;&lt;/a&gt;&lt;br /&gt;Servers and supercomputers&lt;br /&gt;Historically, Linux has mainly been used as a &lt;a title=&quot;Server (computing)&quot; href=&quot;http://en.wikipedia.org/wiki/Server_%28computing%29&quot;&gt;server&lt;/a&gt; operating system, and has risen to prominence in that area; &lt;a title=&quot;Netcraft&quot; href=&quot;http://en.wikipedia.org/wiki/Netcraft&quot;&gt;Netcraft&lt;/a&gt; reported in February 2008 that five of the ten most reliable internet hosting companies run Linux on their &lt;a title=&quot;Web server&quot; href=&quot;http://en.wikipedia.org/wiki/Web_server&quot;&gt;web servers&lt;/a&gt;.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-35&quot;&gt;[36]&lt;/a&gt; This is due to its relative stability and long uptime, and the fact that desktop software with a graphical user interface for servers is often unneeded. Enterprise and non-enterprise Linux distributions may be found running on servers. Linux is the cornerstone of the &lt;a title=&quot;LAMP (software bundle)&quot; href=&quot;http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29&quot;&gt;LAMP&lt;/a&gt; server-software combination (Linux, &lt;a title=&quot;Apache HTTP Server&quot; href=&quot;http://en.wikipedia.org/wiki/Apache_HTTP_Server&quot;&gt;Apache&lt;/a&gt;, &lt;a title=&quot;MySQL&quot; href=&quot;http://en.wikipedia.org/wiki/MySQL&quot;&gt;MySQL&lt;/a&gt;, &lt;a title=&quot;Perl&quot; href=&quot;http://en.wikipedia.org/wiki/Perl&quot;&gt;Perl&lt;/a&gt;/&lt;a title=&quot;PHP&quot; href=&quot;http://en.wikipedia.org/wiki/PHP&quot;&gt;PHP&lt;/a&gt;/&lt;a title=&quot;Python (programming language)&quot; href=&quot;http://en.wikipedia.org/wiki/Python_%28programming_language%29&quot;&gt;Python&lt;/a&gt;) which has achieved popularity among developers, and which is one of the more common platforms for website hosting.&lt;br /&gt;Linux is commonly used as an operating system for &lt;a title=&quot;Supercomputer&quot; href=&quot;http://en.wikipedia.org/wiki/Supercomputer&quot;&gt;supercomputers&lt;/a&gt;. As of &lt;a title=&quot;November 2007&quot; href=&quot;http://en.wikipedia.org/wiki/November_2007&quot;&gt;November 2007&lt;/a&gt;, out of the top 500 systems, 426 (85.2%) run Linux.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-36&quot;&gt;[37]&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Embedded devices&lt;br /&gt;&lt;br /&gt;Due to its low cost and ability to be easily modified, an &lt;a title=&quot;Embedded Linux&quot; href=&quot;http://en.wikipedia.org/wiki/Embedded_Linux&quot;&gt;embedded Linux&lt;/a&gt; is often used in &lt;a class=&quot;mw-redirect&quot; title=&quot;Embedded systems&quot; href=&quot;http://en.wikipedia.org/wiki/Embedded_systems&quot;&gt;embedded systems&lt;/a&gt;. Linux has become a major competitor to the proprietary &lt;a title=&quot;Symbian OS&quot; href=&quot;http://en.wikipedia.org/wiki/Symbian_OS&quot;&gt;Symbian OS&lt;/a&gt; found in the majority of smartphones — 16.7% of &lt;a title=&quot;Smartphone&quot; href=&quot;http://en.wikipedia.org/wiki/Smartphone&quot;&gt;smartphones&lt;/a&gt; sold worldwide during 2006 were using Linux&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-37&quot;&gt;[38]&lt;/a&gt; — and it is an alternative to the proprietary &lt;a title=&quot;Windows CE&quot; href=&quot;http://en.wikipedia.org/wiki/Windows_CE&quot;&gt;Windows CE&lt;/a&gt; and &lt;a title=&quot;Palm OS&quot; href=&quot;http://en.wikipedia.org/wiki/Palm_OS&quot;&gt;Palm OS&lt;/a&gt; operating systems on &lt;a title=&quot;Mobile device&quot; href=&quot;http://en.wikipedia.org/wiki/Mobile_device&quot;&gt;mobile devices&lt;/a&gt;. Cell phones or PDAs running on Linux and built on open source platform became a trend from 2007, like &lt;a title=&quot;Nokia N810&quot; href=&quot;http://en.wikipedia.org/wiki/Nokia_N810&quot;&gt;Nokia N810&lt;/a&gt;, &lt;a title=&quot;Openmoko&quot; href=&quot;http://en.wikipedia.org/wiki/Openmoko&quot;&gt;Openmoko&lt;/a&gt;&#39;s &lt;a title=&quot;Neo1973&quot; href=&quot;http://en.wikipedia.org/wiki/Neo1973&quot;&gt;Neo1973&lt;/a&gt; and the on-going &lt;a class=&quot;mw-redirect&quot; title=&quot;Google Android&quot; href=&quot;http://en.wikipedia.org/wiki/Google_Android&quot;&gt;Google Android&lt;/a&gt;. The popular &lt;a title=&quot;TiVo&quot; href=&quot;http://en.wikipedia.org/wiki/TiVo&quot;&gt;TiVo&lt;/a&gt; digital video recorder uses a customized version of Linux.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-38&quot;&gt;[39]&lt;/a&gt; Several network &lt;a title=&quot;Firewall&quot; href=&quot;http://en.wikipedia.org/wiki/Firewall&quot;&gt;firewall&lt;/a&gt; and &lt;a title=&quot;Router&quot; href=&quot;http://en.wikipedia.org/wiki/Router&quot;&gt;router&lt;/a&gt; standalone products, including several from &lt;a title=&quot;Linksys&quot; href=&quot;http://en.wikipedia.org/wiki/Linksys&quot;&gt;Linksys&lt;/a&gt;, use Linux internally, using its advanced firewall and routing capabilities. The &lt;a title=&quot;Korg OASYS&quot; href=&quot;http://en.wikipedia.org/wiki/Korg_OASYS&quot;&gt;Korg OASYS&lt;/a&gt; and the &lt;a title=&quot;Yamaha Motif&quot; href=&quot;http://en.wikipedia.org/wiki/Yamaha_Motif&quot;&gt;Yamaha Motif XS&lt;/a&gt; &lt;a title=&quot;Music workstation&quot; href=&quot;http://en.wikipedia.org/wiki/Music_workstation&quot;&gt;music workstations&lt;/a&gt; also run Linux.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-39&quot;&gt;[40]&lt;/a&gt; Further more Linux is used in the leading &lt;a title=&quot;Stage lighting&quot; href=&quot;http://en.wikipedia.org/wiki/Stage_lighting&quot;&gt;stage lighting&lt;/a&gt; control system, FlyingPig/HighEnd WholeHogIII Console.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-40&quot;&gt;[41]&lt;/a&gt;&lt;br /&gt;&lt;a id=&quot;Market_share_and_uptake&quot; name=&quot;Market_share_and_uptake&quot;&gt;&lt;/a&gt;&lt;br /&gt;Market share and uptake&lt;br /&gt;Main article: &lt;a title=&quot;Linux adoption&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_adoption&quot;&gt;Linux adoption&lt;/a&gt;&lt;br /&gt;Many quantitative studies of open source software focus on topics including market share and reliability, with numerous studies specifically examining Linux.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-41&quot;&gt;[42]&lt;/a&gt; The Linux market is growing rapidly, and the revenue of servers, desktops, and packaged software running Linux is expected to exceed $35.7 billion by 2008.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-42&quot;&gt;[43]&lt;/a&gt;&lt;br /&gt;&lt;a title=&quot;International Data Corporation&quot; href=&quot;http://en.wikipedia.org/wiki/International_Data_Corporation&quot;&gt;IDC&lt;/a&gt;&#39;s report for Q1 2007 says that Linux now holds 12.7% of the overall server market.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-Linux-watch.com_IDC.27s_Q1_2007_report-43&quot;&gt;[44]&lt;/a&gt; This estimate was based on the number of Linux servers sold by various companies.&lt;br /&gt;Desktop adoption of Linux is approximately 1%. In comparison, &lt;a title=&quot;List of Microsoft operating systems&quot; href=&quot;http://en.wikipedia.org/wiki/List_of_Microsoft_operating_systems&quot;&gt;Microsoft operating systems&lt;/a&gt; hold more than 90%.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-44&quot;&gt;[45]&lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-45&quot;&gt;[46]&lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-46&quot;&gt;[47]&lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-47&quot;&gt;[48]&lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-48&quot;&gt;[49]&lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-49&quot;&gt;[50]&lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-50&quot;&gt;[51]&lt;/a&gt;&lt;br /&gt;The frictional cost of switching operating systems and lack of support for certain hardware and application programs designed for &lt;a title=&quot;Microsoft Windows&quot; href=&quot;http://en.wikipedia.org/wiki/Microsoft_Windows&quot;&gt;Microsoft Windows&lt;/a&gt; have been two factors that have inhibited adoption. Proponents and analysts attribute the relative success of Linux to its security, reliability,&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-51&quot;&gt;[52]&lt;/a&gt; low cost, and freedom from &lt;a title=&quot;Vendor lock-in&quot; href=&quot;http://en.wikipedia.org/wiki/Vendor_lock-in&quot;&gt;vendor lock-in&lt;/a&gt;.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-52&quot;&gt;[53]&lt;/a&gt;&lt;br /&gt;Also most recently Google has begun to fund &lt;a title=&quot;Wine (software)&quot; href=&quot;http://en.wikipedia.org/wiki/Wine_%28software%29&quot;&gt;Wine&lt;/a&gt;, which acts as a compatibility layer, allowing users to run some Windows programs under Linux.&lt;br /&gt;The &lt;a title=&quot;OLPC XO-1&quot; href=&quot;http://en.wikipedia.org/wiki/OLPC_XO-1&quot;&gt;XO laptop&lt;/a&gt; project of One Laptop Per Child is creating a new and potentially much larger Linux community, planned to reach &lt;a class=&quot;external text&quot; title=&quot;http://www.laptop.org/en/vision/mission/index.shtml&quot; href=&quot;http://www.laptop.org/en/vision/mission/index.shtml&quot; rel=&quot;nofollow&quot;&gt;several hundred million schoolchildren&lt;/a&gt; and their families and communities in developing countries. &lt;a class=&quot;external text&quot; title=&quot;http://wiki.laptop.org/go/countries&quot; href=&quot;http://wiki.laptop.org/go/countries&quot; rel=&quot;nofollow&quot;&gt;Six countries&lt;/a&gt; have ordered a million or more units each for delivery in 2007 to distribute to schoolchildren at no charge. &lt;a title=&quot;Google&quot; href=&quot;http://en.wikipedia.org/wiki/Google&quot;&gt;Google&lt;/a&gt;, &lt;a title=&quot;Red Hat&quot; href=&quot;http://en.wikipedia.org/wiki/Red_Hat&quot;&gt;Red Hat&lt;/a&gt;, and &lt;a title=&quot;EBay&quot; href=&quot;http://en.wikipedia.org/wiki/EBay&quot;&gt;eBay&lt;/a&gt; are among the major supporters of the project.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-53&quot;&gt;[54]&lt;/a&gt;&lt;br /&gt;See also: &lt;a title=&quot;Usage share of desktop operating systems&quot; href=&quot;http://en.wikipedia.org/wiki/Usage_share_of_desktop_operating_systems&quot;&gt;Usage share of desktop operating systems&lt;/a&gt;&lt;br /&gt;&lt;a id=&quot;Code_size&quot; name=&quot;Code_size&quot;&gt;&lt;/a&gt;&lt;br /&gt;Code size&lt;br /&gt;A 2001 study of &lt;a title=&quot;Red Hat Linux&quot; href=&quot;http://en.wikipedia.org/wiki/Red_Hat_Linux&quot;&gt;Red Hat Linux&lt;/a&gt; 7.1 found that this distribution contained 30 million &lt;a title=&quot;Source lines of code&quot; href=&quot;http://en.wikipedia.org/wiki/Source_lines_of_code&quot;&gt;source lines of code&lt;/a&gt;. Using the &lt;a title=&quot;COCOMO&quot; href=&quot;http://en.wikipedia.org/wiki/COCOMO&quot;&gt;Constructive Cost Model&lt;/a&gt;, the study estimated that this distribution required about eight thousand man-years of development time. According to the study, if all this software had been developed by conventional &lt;a title=&quot;Proprietary software&quot; href=&quot;http://en.wikipedia.org/wiki/Proprietary_software&quot;&gt;proprietary&lt;/a&gt; means, it would have cost about 1.08 billion dollars (year 2000 U.S. dollars) to develop in the United States.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-estimating_size-54&quot;&gt;[55]&lt;/a&gt;&lt;br /&gt;Most of the code (71%) was written in the &lt;a title=&quot;C (programming language)&quot; href=&quot;http://en.wikipedia.org/wiki/C_%28programming_language%29&quot;&gt;C&lt;/a&gt; &lt;a title=&quot;Computer programming&quot; href=&quot;http://en.wikipedia.org/wiki/Computer_programming&quot;&gt;programming&lt;/a&gt; &lt;a title=&quot;Programming language&quot; href=&quot;http://en.wikipedia.org/wiki/Programming_language&quot;&gt;language&lt;/a&gt;, but many other languages were used, including &lt;a title=&quot;C++&quot; href=&quot;http://en.wikipedia.org/wiki/C%2B%2B&quot;&gt;C++&lt;/a&gt;, &lt;a title=&quot;Assembly language&quot; href=&quot;http://en.wikipedia.org/wiki/Assembly_language&quot;&gt;assembly language&lt;/a&gt;, &lt;a title=&quot;Perl&quot; href=&quot;http://en.wikipedia.org/wiki/Perl&quot;&gt;Perl&lt;/a&gt;, &lt;a title=&quot;Python (programming language)&quot; href=&quot;http://en.wikipedia.org/wiki/Python_%28programming_language%29&quot;&gt;Python&lt;/a&gt;, &lt;a title=&quot;Fortran&quot; href=&quot;http://en.wikipedia.org/wiki/Fortran&quot;&gt;Fortran&lt;/a&gt;, and various &lt;a title=&quot;Shell script&quot; href=&quot;http://en.wikipedia.org/wiki/Shell_script&quot;&gt;shell scripting&lt;/a&gt; languages. Slightly over half of all lines of code were licensed under the GPL. The Linux kernel itself was 2.4 million lines of code, or 8% of the total.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-estimating_size-54&quot;&gt;[55]&lt;/a&gt;&lt;br /&gt;In a later study, the same analysis was performed for Debian GNU/Linux version 4.0.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-55&quot;&gt;[56]&lt;/a&gt; This distribution contained over 283 million source lines of code, and the study estimated that it would have cost 5.4 billion Euros to develop by conventional means.&lt;br /&gt;&lt;a id=&quot;Licensing.2C_trademark.2C_and_naming&quot; name=&quot;Licensing.2C_trademark.2C_and_naming&quot;&gt;&lt;/a&gt;&lt;br /&gt;Licensing, trademark, and naming&lt;br /&gt;The Linux kernel and most GNU software are &lt;a title=&quot;Software license&quot; href=&quot;http://en.wikipedia.org/wiki/Software_license&quot;&gt;licensed&lt;/a&gt; under the &lt;a title=&quot;GNU General Public License&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_General_Public_License&quot;&gt;GNU General Public License&lt;/a&gt; (GPL). The GPL requires that anyone who distributes the Linux kernel must make the source code (and any modifications) available to the recipient under the same terms. In 1997, Linus Torvalds stated, “Making Linux GPL&#39;d was definitely the best thing I ever did.”&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-56&quot;&gt;[57]&lt;/a&gt; Other key components of a Linux system may use other licenses; many libraries use the &lt;a title=&quot;GNU Lesser General Public License&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License&quot;&gt;GNU Lesser General Public License&lt;/a&gt; (LGPL), a more permissive variant of the GPL, and the &lt;a title=&quot;X Window System&quot; href=&quot;http://en.wikipedia.org/wiki/X_Window_System&quot;&gt;X Window System&lt;/a&gt; uses the &lt;a title=&quot;MIT License&quot; href=&quot;http://en.wikipedia.org/wiki/MIT_License&quot;&gt;MIT License&lt;/a&gt;.&lt;br /&gt;Torvalds has publicly stated that he would not move the Linux kernel (currently licensed under GPL version 2) to version 3 of the GPL, released in mid-2007, specifically citing some provisions in the new license which prohibit the use of the software in &lt;a title=&quot;Digital rights management&quot; href=&quot;http://en.wikipedia.org/wiki/Digital_rights_management&quot;&gt;digital rights management&lt;/a&gt;.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-57&quot;&gt;[58]&lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-58&quot;&gt;[59]&lt;/a&gt;&lt;br /&gt;In the United States, the name Linux is a &lt;a title=&quot;Trademark&quot; href=&quot;http://en.wikipedia.org/wiki/Trademark&quot;&gt;trademark&lt;/a&gt; registered to Linus Torvalds.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-59&quot;&gt;[60]&lt;/a&gt; Initially, nobody registered it, but on &lt;a title=&quot;August 15&quot; href=&quot;http://en.wikipedia.org/wiki/August_15&quot;&gt;August 15&lt;/a&gt;, &lt;a title=&quot;1994&quot; href=&quot;http://en.wikipedia.org/wiki/1994&quot;&gt;1994&lt;/a&gt;, William R. Della Croce, Jr. filed for the trademark Linux, and then demanded royalties from Linux distributors. In 1996, Torvalds and some affected organizations sued him to have the trademark assigned to Torvalds, and in 1997 the case was settled.&lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Linux#cite_note-60&quot;&gt;[61]&lt;/a&gt; The licensing of the trademark has since been handled by the &lt;a title=&quot;Linux Mark Institute&quot; href=&quot;http://en.wikipedia.org/wiki/Linux_Mark_Institute&quot;&gt;Linux Mark Institute&lt;/a&gt;. Torvalds has stated that he only trademarked the name to prevent someone else from using it, but was bound in 2005 by &lt;a title=&quot;United States trademark law&quot; href=&quot;http://en.wikipedia.org/wiki/United_States_trademark_law&quot;&gt;United States trademark law&lt;/a&gt; to take active measures to enforce the trademark. As a result, the LMI sent out a number of letters to distribution vendors requesting that a fee be paid for the use of the name, and a number of companies have complied&lt;br /&gt;&lt;br /&gt;&lt;a id=&quot;GNU.2FLinux&quot; name=&quot;GNU.2FLinux&quot;&gt;&lt;/a&gt;&lt;br /&gt;GNU/Linux&lt;br /&gt;The &lt;a title=&quot;Free Software Foundation&quot; href=&quot;http://en.wikipedia.org/wiki/Free_Software_Foundation&quot;&gt;Free Software Foundation&lt;/a&gt; views Linux distributions which use GNU software as &lt;a title=&quot;GNU variants&quot; href=&quot;http://en.wikipedia.org/wiki/GNU_variants&quot;&gt;GNU variants&lt;/a&gt; and they ask that such operating systems be referred to as GNU/Linux or a Linux-based GNU system.However, the media and population at large refers to this family of operating systems simply as Linux. While some distributors make a point of using the aggregate form, most notably &lt;a title=&quot;Debian&quot; href=&quot;http://en.wikipedia.org/wiki/Debian&quot;&gt;Debian&lt;/a&gt; with the &lt;a class=&quot;mw-redirect&quot; title=&quot;Debian GNU/Linux&quot; href=&quot;http://en.wikipedia.org/wiki/Debian_GNU/Linux&quot;&gt;Debian GNU/Linux&lt;/a&gt; distribution, the term&#39;s use outside of the enthusiast community is limited. The distinction between the Linux kernel and distributions based on it plus the GNU system is a source of confusion to many newcomers, and the naming remains controversial</description><link>http://unleashed-linux.blogspot.com/2008/04/linux.html</link><author>noreply@blogger.com (venomofdeath)</author><thr:total>0</thr:total></item></channel></rss>