Linux

From Wikipedia, the free encyclopedia

Jump to: navigation, search
Linux

Tux the penguin, mascot of the Linux kernel
OS family Unix-like
Working state Current
Latest stable release 2.6.29  (Mar 23, 2009) [+/−]
Latest unstable release [1]  () [+/−]
Supported platforms x86, MIPS, SPARC, DEC Alpha, Itanium, PowerPC, ARM, m68k, PA-RISC, s390, SuperH, M32R and more
Kernel type Monolithic kernel
License Various including GNU General Public License, BSD License, Apache License and others [1]

Linux (commonly pronounced IPA: /ˈlɪnəks/ in English; variants exist[2]) is a generic term referring to Unix-like computer operating systems based on the Linux kernel. Their development is one of the most prominent examples of free and open source software collaboration; typically all the underlying source code can be used, freely modified, and redistributed by anyone under the terms of the GNU GPL[3] and other free licenses.

Linux is predominantly known for its use in servers, although it is installed on a wide variety of computer hardware, ranging from embedded devices and mobile phones to supercomputers.[4] Linux distributions, installed on both desktop and laptop computers, have become increasingly commonplace in recent years, owing largely to the popular Ubuntu distribution and to the emergence of netbooks.[5][6]

The name "Linux" comes from the Linux kernel, originally written in 1991 by Linus Torvalds. The rest of the system, including utilities and libraries, usually comes from the GNU operating system announced in 1983 by Richard Stallman. The GNU contribution is the basis for the alternative name GNU/Linux.[7]

Contents

[edit] History

Richard Stallman, left, founder of the GNU project, and Linus Torvalds, right, author of the Linux kernel Richard Stallman, left, founder of the GNU project, and Linus Torvalds, right, author of the Linux kernel
Richard Stallman, left, founder of the GNU project, and Linus Torvalds, right, author of the Linux kernel

The Unix operating system was conceived and implemented in the 1960s and first released in 1970. Its wide availability and portability meant that it was widely adopted, copied and modified by academic institutions and businesses, with its design being influential on authors of other systems.

The GNU Project, started in 1984 by Richard Stallman, had the goal of creating a "complete Unix-compatible software system"[8] made entirely of free software. The next year Stallman created the Free Software Foundation and wrote the GNU General Public License (GNU GPL) in 1989. By the early 1990s, many of the programs required in an operating system (such as libraries, compilers, text editors, a Unix shell, and a windowing system) were completed, although low-level elements such as device drivers, daemons, and the kernel were stalled and incomplete.[9] 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.[10]

[edit] MINIX

In 1991 while attending the University of Helsinki, Torvalds began to work on a non-commercial replacement for MINIX,[11] which would eventually become the Linux kernel.

Linux was dependent on the MINIX user space 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.[12] Developers worked to integrate GNU components with Linux to make a fully functional and free operating system.[9]

[edit] Commercial and popular uptake

Today Linux distributions are used in numerous domains, from embedded systems to supercomputers,[13][14] and have secured a place in server installations with the popular LAMP application stack.[15] Use of Linux distributions in home and enterprise desktops has been expanding.[16][17][18][19][20][21][22] They have also gained in popularity with governments such that the governments have decided to use them in their computers. The federal government of Brazil is well known for its support for Linux.[23][24] News of the Russian military creating their own Linux distribution has also surfaced.[25] India has gone so far as to make it mandatory for all state high schools to run Linux on their computers.[26] China, France, and Germany have also taken steps in its adoption.[27]

Linux distributions have also become popular with the newly founded netbook market, with many devices such as the ASUS Eee PC and Acer Aspire One shipping with customized Linux distributions pre-installed.

[edit] Current development

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 Linux distributions.

For the 2.6.29 release only, the kernel's mascot, a penguin named Tux, has been temporarily replaced by Tuz in order to highlight efforts to save the Tasmanian Devil from extinction.[28]

[edit] Design

A Linux-based system is a modular Unix-like operating system. It derives much of its basic design from principles established in Unix during the 1970s and 1980s. Such a system uses a monolithic kernel, the Linux kernel, which handles process control, networking, and peripheral and file system access. Device drivers are integrated directly with the kernel.

Separate projects that interface with the kernel provide much of the system's higher-level functionality. The GNU userland is an important part of most Linux-based systems, providing the most common implementation of the C library, a popular shell, and many of the common Unix tools which carry out many basic operating system tasks. The graphical user interface on most Linux systems is based on the X Window System.

[edit] User interface

A Linux-based system can be controlled by one or more of a text-based command line interface (CLI), graphical user interface (GUI) (usually the default for desktop), or through controls on the device itself (common on embedded machines).

On desktop machines, KDE, GNOME and Xfce are the most popular user interfaces,[29] though a variety of other user interfaces exist. Most popular user interfaces run on top of the X Window System (X), which provides network transparency, enabling a graphical application running on one machine to be displayed and controlled from another.

Other GUIs include X window managers such as FVWM, Enlightenment and Window Maker. The window manager provides a means to control the placement and appearance of individual application windows, and interacts with the X window system.

A Linux system typically provides a CLI of some sort through a shell, 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 remote-control protocol such as SSH or telnet.

Most low-level Linux components, including the GNU Userland, use the CLI exclusively. The CLI is particularly suited for automation of repetitive or delayed tasks, and provides very simple inter-process communication. A graphical terminal emulator program is often used to access the CLI from a Linux desktop.

[edit] Development

A summarized history of Unix-like operating systems showing Linux's origins. Note that despite similar architectural designs and concepts being shared as part of the POSIX standard, Linux does not share any non-free source code with the original Unix or Minix.

The primary difference between Linux and many other popular contemporary operating systems is that the Linux kernel and other components are free and open source software. Linux is not the only such operating system, although it is by far the most widely used. Some free and open source software licenses are based on the principle of copyleft, 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 GNU GPL, is a form of copyleft, and is used for the Linux kernel and many of the components from the GNU project.

Linux based distributions are intended by developers for interoperability with other operating systems and established computing standards. Linux systems adhere to POSIX,[30] SUS,[31] ISO and ANSI standards where possible, although to date only one Linux distribution has been POSIX.1 certified, Linux-FT.[32]

Free software projects, although developed in a collaborative fashion, are often produced independently of each other. The fact that the software licenses explicitly permit redistribution, however, 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 Linux distribution.

A Linux distribution, commonly called a "distro", is a project that manages a remote collection of system software and application software packages available for download and installation through a network connection. This allows the user to adapt the operating system to his/her specific needs. Distributions are maintained by individuals, loose-knit teams, volunteer organizations, and commercial entities. A distribution can be installed using a CD that contains distribution-specific software for initial system installation and configuration. A package manager such as Synaptic allows later package upgrades and installs. A distribution is responsible for the default configuration of the installed Linux kernel, general system security, and more generally integration of the different software packages into a coherent whole.

[edit] Community

A distribution is largely driven by its developer and user communities. Some vendors develop and fund their distributions on a volunteer basis, Debian being a well-known example. Others maintain a community version of their commercial distributions, as Red Hat does with Fedora.

In many cities and regions, local associations known as Linux Users Groups (LUGs) seek to promote their preferred distribution and by extension free software. They hold meetings and provide free demonstrations, training, technical support, and operating system installation to new users. Many Internet communities also provide support to Linux users and developers. Most distributions and free software / open source projects have IRC chatrooms or newsgroups. Online forums are another means for support, with notable examples being LinuxQuestions.org and the Gentoo forums. Linux distributions host mailing lists; commonly there will be a specific topic such as usage or development for a given list.

There are several technology websites with a Linux focus. Print magazines on Linux often include cover disks including software or even complete Linux distributions.[33][34]

Although Linux distributions are generally available without charge, several large corporations sell, support, and contribute to the development of the components of the system and of free software. These include Dell, IBM, HP, Oracle, Sun Microsystems, Novell, Nokia. A number of corporations, notably Red Hat, have built their entire business around Linux distributions.

The free software licenses, on which the various software packages of a distribution built on the Linux kernel are based, explicitly accommodate and encourage commercialization; the relationship between a Linux distribution as a whole and individual vendors may be seen as symbiotic. 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.

[edit] Programming on Linux

Most Linux distributions support dozens of programming languages. The most common collection of utilities for building both Linux applications and operating system programs is found within the GNU toolchain, which includes the GNU Compiler Collection (GCC) and the GNU build system. Amongst others, GCC provides compilers for Ada, C, C++, Java, and Fortran. The Linux kernel itself is written to be compiled with GCC. Proprietary compilers for Linux include the Intel C++ Compiler and IBM XL C/C++ Compiler.

Most distributions also include support for Perl, Ruby, Python and other dynamic languages. Examples of languages that are less common, but still well-supported, are C# via the Mono project, sponsored by Novell, and Scheme. A number of Java Virtual Machines and development kits run on Linux, including the original Sun Microsystems JVM (HotSpot), and IBM's J2SE RE, as well as many open-source projects like Kaffe.

The two main frameworks for developing graphical applications are those of GNOME and KDE. These projects are based on the GTK+ and Qt widget toolkits, respectively, which can also be used independently of the larger framework. Both support a wide variety of languages. There are a number of Integrated development environments available including Anjuta, Code::Blocks, Eclipse, KDevelop, Lazarus, MonoDevelop, NetBeans, and Omnis Studio while the long-established editors Vim and Emacs remain popular.[35]

[edit] Uses

The Linux kernel can run on Windows[36]

As well as those designed for general purpose use on desktops and servers, distributions may be specialized for different purposes including: computer architecture support, embedded systems, stability, security, localization to a specific region or language, targeting of specific user groups, support for real-time applications, or commitment to a given desktop environment. Furthermore, some distributions deliberately include only free software. Currently, over three hundred distributions are actively developed, with about a dozen distributions being most popular for general-purpose use.[37]

Linux is a widely ported operating system kernel. The Linux kernel runs on the most diverse range of computer architectures: in the hand-held ARM-based iPAQ and the mainframe IBM System z9, in devices ranging from mobile phones to supercomputers.[38] Specialized distributions exist for less mainstream architectures. The ELKS kernel fork can run on Intel 8086 or Intel 80286 16-bit microprocessors, while the µClinux kernel fork may run on systems without a memory management unit. The kernel also runs on architectures that were only ever intended to use a manufacturer-created operating system, such as Macintosh computers (with both PowerPC and Intel processors), PDAs, video game consoles, portable music players, and mobile phones.

[edit] Desktop

Ubuntu: currently the most popular desktop Linux distribution.[39][40]
Debian 4.0 using the GNOME desktop

The popularity of Linux on standard desktops (and laptops) has been increasing over the years. Currently most distributions include a graphical user environment. The two most popular such environments GNOME and KDE, both of which are mature, and support a wide variety of languages.

In the past, the performance of Linux on the desktop has been a controversial topic; for example in 2007 Con Kolivas accused the Linux community of favoring performance on servers. He quit Linux kernel development because he was frustrated with this lack of focus on the desktop, and then gave a "tell all" interview on the topic.[41] However since then significant effort has been expended improving the desktop experience. For example, projects such as upstart aim for a faster boot time.[42] In the field of Linux gaming, however, the Linux desktop still lags behind Windows.[43].

Many types of applications available for Microsoft Windows and Mac OS X are also available for Linux. Commonly, either a free software application will exist which does the functions of an application found on another operating systems, or that application will, in fact, work on Linux (such as Skype). Furthermore, the Wine project provides a Windows compatibility layer to run unmodified Windows applications on Linux. CrossOver is a proprietary solution based on the open source Wine project that supports running Windows versions of Microsoft Office, Intuit applications such as Quicken and QuickBooks, Adobe Photoshop versions through CS2, and many popular games such as World of Warcraft and Team Fortress 2. In other cases, although there is no Linux port of some software in areas such as desktop publishing[44] and professional audio,[45][46][47], there is equivalent software available on Linux.

Many popular applications work on a wide variety of operating systems. For example Mozilla Firefox, and OpenOffice.org work on all major operating systems. Furthermore, some applications were initially developed for Linux (such as Pidgin, and GIMP) and, due to their popularity, were ported to Windows.

A growing number of proprietary desktop applications are also supported on Linux,[48] see List of proprietary software for Linux. 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.

The collaborative nature of free software development allows distributed teams to localize Linux distributions for use in locales where localizing proprietary systems would not be cost-effective. For example the Sinhalese language version of the Knoppix distribution was available for a long time before Microsoft Windows XP 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, linguists, and local developers.

To install new software in Windows, users either download a digital distribution or uses a traditional installation medium (such as CD-ROM). Both of these methods usually provide a "Software Installation Wizard" to guide the user through the setup. On most Linux distributions, there are utilities for browsing a list of thousands of applications installed with a single click. One such program is Synaptic Package Manager.

[edit] Servers and supercomputers

Servers designed for Linux

Historically, Linux distributions have mainly been used as server operating systems, and have risen to prominence in that area; Netcraft reported in September 2006 that eight of the ten most reliable internet hosting companies ran Linux distributions on their web servers.[49] (As of June 2008, Linux distributions represented five of ten, FreeBSD three of ten, and Microsoft two of ten.[50]) 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 distributions are the cornerstone of the LAMP server-software combination (Linux, Apache, MySQL, Perl/PHP/Python) which has achieved popularity among developers, and which is one of the more common platforms for website hosting. Linux distributions are commonly used as operating systems for supercomputers. As of November 2008, out of the top 500 systems, 439 (87.8%) run a Linux distribution.[51]

[edit] Embedded devices

Sharp Zaurus SL-5500 running OpenZaurus and OPIE, with docking cradle and stylus

Due to its low cost and ability to be easily modified, an embedded Linux is often used in embedded systems. Linux has become a major competitor to the proprietary Symbian OS found in the majority of smartphones—16.7% of smartphones sold worldwide during 2006 were using Linux[52]—and it is an alternative to the proprietary Windows CE and Palm OS operating systems on mobile devices. Cell phones or PDAs running on Linux and built on open source platform became a trend from 2007, like Nokia N810, Openmoko's Neo1973, Motorola RAZR2 v8, Motorola ROKR E8, Motorola MING series, Motorola ZINE and the on-going Google Android. The popular TiVo digital video recorder uses a customized version of Linux.[53] Several network firewall and router standalone products, including several from Linksys, use Linux internally, using its advanced firewall and routing capabilities. The Korg OASYS and the Yamaha Motif XS music workstations also run Linux.[54] Furthermore, Linux is used in the leading stage lighting control system, FlyingPig/HighEnd WholeHogIII Console.[55]

[edit] Market share and uptake

Many quantitative studies of free / open source software focus on topics including market share and reliability, with numerous studies specifically examining Linux.[56] The Linux market is growing rapidly, and the revenue of servers, desktops, and packaged software running Linux was expected to exceed $35.7 billion by 2008.[57]

IDC's report for Q1 2007 says that Linux now holds 12.7% of the overall server market.[58] This estimate was based on the number of Linux servers sold by various companies. Although, with web servers that do not belong to companies, i.e. personal web servers and blog sites, the percentage of overall market share is higher than that of the Microsoft web server.[citation needed]

Estimates for the desktop market share of Linux range from less than one percent to almost two percent. In comparison, Microsoft operating systems hold more than 90%.[16][17][18][19][20][21][22]

The frictional cost of switching operating systems and lack of support for certain hardware and application programs designed for Microsoft Windows have been two factors that have inhibited adoption. Proponents and analysts attribute the relative success of Linux to its security, reliability,[59] low cost, and freedom from vendor lock-in.[60]

Also most recently Google has begun to fund Wine, which acts as a compatibility layer, allowing users to run some Windows programs under Linux.[61][62]

The XO laptop project of One Laptop Per Child is creating a new and potentially much larger Linux community, planned to reach several hundred million schoolchildren and their families and communities in developing countries.[63] Six countries have ordered a million or more units each for delivery in 2007 to distribute to schoolchildren at no charge. Google, Red Hat, and eBay are major supporters of the project.[64] While the XO will also have a Windows option, it will be primarily deployed using Red Hat Enterprise Linux.

In the film industry Linux has been the platform of choice for several years. The first major film produced on Linux servers was Titanic in 1997. Since then major studios like Dreamworks Animation, Pixar and Industrial Light & Magic have moved to Linux.[65][66] Currently more than 95% of the servers and desktops at large animation and visual effects companies use Linux.[67]

[edit] Copyright and naming

The Linux kernel and most GNU software are licensed under the GNU General Public License (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'd was definitely the best thing I ever did.”[68] Other key components of a Linux system may use other licenses; many libraries use the GNU Lesser General Public License (LGPL), a more permissive variant of the GPL, and the X Window System uses the MIT License.

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 digital rights management.[69][70]

A 2001 study of Red Hat Linux 7.1 found that this distribution contained 30 million source lines of code. Using the Constructive Cost Model, 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 proprietary means, it would have cost about 1.08 billion dollars (year 2000 U.S. dollars) to develop in the United States.[71]

Most of the code (71%) was written in the C programming language, but many other languages were used, including C++, assembly language, Perl, Python, Fortran, and various shell scripting 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.[71]

In a later study, the same analysis was performed for Debian GNU/Linux version 4.0.[72] 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.

In the United States, the name Linux is a trademark registered to Linus Torvalds.[73] Initially, nobody registered it, but on 15 August 1994, 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.[74] The licensing of the trademark has since been handled by the Linux Mark Institute. Torvalds has stated that he trademarked the name only to prevent someone else from using it, but was bound in 2005 by United States trademark law to take active measures to enforce the trademark. As a result, the LMI sent letters to distribution vendors requesting that a fee be paid for the use of the name, and a number of companies have complied.[75]

[edit] GNU/Linux

The Free Software Foundation views Linux distributions which use GNU software as GNU variants and they ask that such operating systems be referred to as GNU/Linux or a Linux-based GNU system.[76] The media and common usage, however, refers to this family of operating systems simply as Linux, as do many large Linux distributions (e.g. Ubuntu[77] and SuSE Linux). Some distributions use GNU/Linux (particularly notable is Debian GNU/Linux), but the term's use outside of the enthusiast community is limited. The naming issue remains a source of confusion to many newcomers, and the naming remains controversial. Linus Torvalds is against the GNU/Linux naming, stating that Linux is not a GNU project.[78]

[edit] See also

[edit] References

  1. ^ "Debian GNU/Linux Licenses - Ohloh". ohloh.net. https://www.ohloh.net/p/debian/analyses/latest. Retrieved on 2009-03-27. 
  2. ^ (23 April 1992). "Re: How to pronounce "Linux"?". (Google Groups). Retrieved on 2007-01-09. Torvalds has made available an audio sample which indicates his own pronunciation, in English (/ˈlɪnʊks/) ─ "How to pronounce Linux?". http://www.paul.sladen.org/pronunciation/. Retrieved on 2006-12-17.  ─ and Swedish (/ˈlɪːnɤks/) ─ "Linus pronouncing Linux in English and Swedish". http://www.kernel.org/pub/linux/kernel/SillySounds/. Retrieved on 2007-01-20. 
  3. ^ "Linux Online ─ About the Linux Operating System". Linux.org. http://www.linux.org/info/index.html. Retrieved on 2007-07-06. 
  4. ^ Lyons, Daniel. "Linux rules supercomputers". http://www.forbes.com/home/enterprisetech/2005/03/15/cz_dl_0315linux.html. Retrieved on 2007-02-22. 
  5. ^ The Economist (December 2008). "Small is beautiful". http://www.economist.com/science/tq/displaystory.cfm?story_id=12673233. Retrieved on 2008-12-21. 
  6. ^ The Economist (December 2007). "Technology in 2008". http://www.economist.com/science/displaystory.cfm?story_id=10410912. Retrieved on 2008-12-21. 
  7. ^ Weeks, Alex (2004). "1.1". Linux System Administrator's Guide (version 0.9 ed.). http://www.tldp.org/LDP/sag/html/sag.html#GNU-OR-NOT. Retrieved on 2007-01-18. 
  8. ^ "About the GNU Project - Initial Announcement". Gnu.org. 2008-06-23. http://www.gnu.org/gnu/initial-announcement.html. Retrieved on 2009-03-09. 
  9. ^ a b "Overview of the GNU System". Gnu.org. http://www.gnu.org/gnu/gnu-history.html. Retrieved on 2009-03-09. 
  10. ^ "Linus vs. Tanenbaum debate". http://people.fluidsignal.com/~luferbu/misc/Linus_vs_Tanenbaum.html. 
  11. ^ "What would you like to see most in minix?". comp.os.minix. (Web link). Retrieved on 2006-09-09.
  12. ^ Torvalds, Linus (1992-01-05). "RELEASE NOTES FOR LINUX v0.12". Linux Kernel Archives. http://www.kernel.org/pub/linux/kernel/Historic/old-versions/RELNOTES-0.12. Retrieved on 2007-07-23. "The Linux copyright will change: I've had a couple of requests to make it compatible with the GNU copyleft, removing the “you may not distribute it for money” condition. I agree. I propose that the copyright be changed so that it confirms to GNU ─ pending approval of the persons who have helped write code. I assume this is going to be no problem for anybody: If you have grievances ("I wrote that code assuming the copyright would stay the same") mail me. Otherwise The GNU copyleft takes effect as of the first of February. If you do not know the gist of the GNU copyright ─ read it." 
  13. ^ Santhanam, Anand; Vishal Kulkarni (1 March 2002). "Linux system development on an embedded device". DeveloperWorks. IBM. http://www-128.ibm.com/developerworks/library/l-embdev.html. Retrieved on 2007-07-26. 
  14. ^ Lyons, Daniel. "Linux rules supercomputers". http://www.forbes.com/home/enterprisetech/2005/03/15/cz_dl_0315linux.html. Retrieved on 2007-02-22. 
  15. ^ Schrecker, Michael. "Turn on Web Interactivity with LAMP". http://www.techsoup.org/learningcenter/webbuilding/page5067.cfm. Retrieved on 2007-02-22. 
  16. ^ a b Galli, Peter (2007-08-08). "Vista Aiding Linux Desktop, Strategist Says". eWEEK (Ziff Davis Enterprise Inc.). http://www.eweek.com/c/a/Linux-and-Open-Source/Vista-Aiding-Linux-Desktop-Strategist-Says/. Retrieved on 2007-11-19. 
  17. ^ a b Paul, Ryan (2007-09-03). "Linux market share set to surpass Win 98, OS X still ahead of Vista". Ars Technica (Ars Technica, LLC). http://arstechnica.com/news.ars/post/20070903-linux-marketshare-set-to-surpass-windows-98.html. Retrieved on 2007-11-19. 
  18. ^ a b Beer, Stan (2007-01-23). "Vista to play second fiddle to XP until 2009: Gartner". iTWire (iTWire). http://www.itwire.com.au/content/view/8842/53/. Retrieved on 2007-11-19. 
  19. ^ a b "Operating System Marketshare for Year 2007". Market Share. Net Applications. 2007-11-19. http://marketshare.hitslink.com/report.aspx?qprid=2&qpmr=15&qpdt=1&qpct=3&qptimeframe=Y. Retrieved on 2007-11-19. 
  20. ^ a b "Vista slowly continues its growth; Linux more aggressive than Mac OS during the summer". XiTiMonitor (AT Internet/XiTi.com). 2007-09-24. http://www.xitimonitor.com/en-us/internet-users-equipment/operating-systems-august-2007/index-1-2-7-107.html. Retrieved on 2007-11-19. 
  21. ^ a b "Global Web Stats". W3Counter. Awio Web Services LLC. 2007-11-10. http://www.w3counter.com/globalstats.php. Retrieved on 2007-11-19. 
  22. ^ a b "June 2004 Zeitgeist". Google Press Center. Google Inc.. 2004-08-12. http://www.google.com/press/zeitgeist/zeitgeist-jun04.html. Retrieved on 2007-11-19. 
  23. ^ "Brazil's love of Linux". http://news.cnet.com/Brazils-love-of-Linux/2009-1042_3-6245409.html. Retrieved on 2009-2-21. 
  24. ^ "Brazil falls in love with Linux". http://news.bbc.co.uk/2/hi/business/3445805.stm. Retrieved on 2009-2-21. 
  25. ^ "LV: Minister: "Open standards improve efficiency and transparency"". http://www.osor.eu/news/lv-minister-open-standards-improve-efficiency-and-transparency. Retrieved on 2009-2-21. 
  26. ^ "Linux Spreads its Wings in India". http://www.businessweek.com/globalbiz/content/sep2006/gb20060921_463452.htm. Retrieved on 2009-2-21. 
  27. ^ "Some countries are choosing Linux systems over Microsoft". http://seattlepi.nwsource.com/business/48925_linuxop01.shtml. Retrieved on 2009-2-21. 
  28. ^ "linux/kernel/git/torvalds/linux-2.6.git/commit". git.kernel.org. http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8032b526d1a3bd91ad633dd3a3b5fdbc47ad54f1. Retrieved on 2009-03-28. 
  29. ^ "Debian popularity-contest program information". http://times.debian.net/1092-30000-popcon-submissions. 
  30. ^ "POSIX.1 (FIPS 151-2) Certification". http://www.ukuug.org/newsletter/linux-newsletter/linux@uk21/posix.shtml. 
  31. ^ "How source code compatible is Debian with other Unix systems?". Debian FAQ. the Debian project. http://www.debian.org/doc/FAQ/ch-compat.en.html#s-otherunices. 
  32. ^ "Certifying Linux". http://www.linuxjournal.com/article/0131. 
  33. ^ Linux Format. "Linux Format DVD contents". http://www.linuxformat.co.uk/dvd/. Retrieved on 2008-01-17. 
  34. ^ linux-magazine.com. "Current Issue". http://www.linux-magazine.com/resources/current_issue. Retrieved on 2008-01-17. 
  35. ^ Brockmeier, Joe. "A survey of Linux Web development tools". http://programming.linux.com/programming/05/10/03/1828224.shtml?tid=63&tid=47. Retrieved on 2006-12-16. 
  36. ^ "Portable Ubuntu for Windows". Hacktolive.org. 2009-01-26. http://hacktolive.org/wiki/Portable_Ubuntu_for_Windows. Retrieved on 2009-03-09. 
  37. ^ "The LWN.net Linux Distribution List". http://lwn.net/Distributions/. Retrieved on 2006-05-19. 
  38. ^ Advani, Prakash (8 February 2004). "If I could re-write Linux". freeos.com. http://www.freeos.com/articles/4737/. Retrieved on 2007-01-23. 
  39. ^ "Desktop Market Linux Survey". 2007-08-21. http://www.desktoplinux.com/cgi-bin/survey/survey.cgi?view=archive&id=0813200712407. Retrieved on 2009-03-30. 
  40. ^ DistroWatch (March 2009). "Linux Distributions - Facts and Figures". http://distrowatch.com/stats.php?section=popularity. Retrieved on 2009-03-30. 
  41. ^ "Linux: why I quit". APC Magazine. ACP Magazines. 2007-07-24. http://apcmag.com/node/6735/. Retrieved on 2008-01-18. 
  42. ^ {cite web|Title=Performance of Java on Ubuntu vs Windows|url=http://www.phoronix.com/scan.php?page=article&item=java_vm_performance&num=1
  43. ^ Michael Larabel (9 November 2007). "A Synopsis Of Linux Graphics Drivers". http://www.phoronix.com/scan.php?page=article&item=908&num=1. Retrieved on 31 March 2009. 
  44. ^ Advani, Prakash (2000-10-27). "Microsoft Office for Linux?". FreeOS. FreeOS Technologies (I) Pvt. Ltd.. http://www.freeos.com/articles/2540/. Retrieved on 2008-02-03. 
  45. ^ Smith-Heisters, Ian (2005-10-11). "Editing audio in Linux". Ars Technica. Ars Technica, LLC. http://arstechnica.com/guides/tweaks/linux-audio.ars. Retrieved on 2008-02-03. 
  46. ^ Lumma, Carl (April 2007). "Linux: It's Not Just For Computer Geeks Anymore". Keyboard Magazine. New Bay Media, LLC.. http://www.keyboardmag.com/article/linux-its-not/apr-07/27458. Retrieved on 2008-02-03. 
  47. ^ James, Daniel (February 2004). "Using Linux For Recording & Mastering". Sound On Sound. SOS Publications Group. http://www.soundonsound.com/sos/feb04/articles/mirrorimage.htm. Retrieved on 2008-02-03. 
  48. ^ "The Global Desktop Project, Building Technology and Communities". http://www.iist.unu.edu/globaldesktop/. Retrieved on 2006-05-07. 
  49. ^ "Rackspace Most Reliable Hoster in September". Netcraft. 7 October 2006. http://news.netcraft.com/archives/2006/10/07/rackspace_most_reliable_hoster_in_september.html. Retrieved on 2006-11-01. 
  50. ^ "Aplus.Net is the Most Reliable Hosting Company Site in June 2008". Netcraft. 7 July 2008. http://news.netcraft.com/archives/2008/07/07/aplusnet_is_the_most_reliable_hosting_company_site_in_june_2008.html. Retrieved on 2008-07-28. 
  51. ^ Courtenay Vaughan. "Operating system Family share for 11/2008 | TOP500 Supercomputing Sites". Top500.org. http://www.top500.org/stats/list/32/osfam. Retrieved on 2009-03-09. 
  52. ^ "The Palm OS Clings To Life". http://www.informationweek.com/showArticle.jhtml?articleID=197000995. 
  53. ^ "TiVo ─ GNU/Linux Source Code". Archived from the original on 2007-05-19. http://web.archive.org/web/20070519150730/http://www.tivo.com/linux/linux.asp. Retrieved on 2006-12-12. 
  54. ^ "Case Study: How MontaVista Linux helped Yamaha developers make a great product greater". http://www.mvista.com/downloads/Case_study_MontaVista_Linux_and_Yamaha.pdf. Retrieved on 2007-08-26. 
  55. ^ "Embedded Linux: FlyingPigs the WholeHogIII runs on Linux". http://www.highend.com/products/controllers/Wholehog3Console.asp. 
  56. ^ Wheeler, David A. "Why Open Source Software/Free Software (OSS/FS)? Look at the Numbers!". http://www.dwheeler.com/oss_fs_why.html. Retrieved on 2006-04-01. 
  57. ^ "Linux To Ring Up $35 Billion By 2008". http://www.techweb.com/wire/showArticle.jhtml?articleID=55800522. Retrieved on 2006-04-01. 
  58. ^ "─ IDC Q1 2007 report". Linux-watch.com. 2007-05-29. http://www.linux-watch.com/news/NS5369154346.html. Retrieved on 2009-03-09. 
  59. ^ "Why customers are flocking to Linux". http://www-306.ibm.com/software/info/features/feb152005/. 
  60. ^ "The rise and rise of Linux". http://www.ca.com/za/news/2005/20051010_linux.htm. 
  61. ^ Kegel, Dan (2008-02-14). "Google's support for Wine in 2007". wine-devel mailing list. http://article.gmane.org/gmane.comp.emulators.wine.devel/56872. Retrieved on 2009-01-03. 
  62. ^ "Open Source Patches: Wine". Google. http://code.google.com/opensource/wine.html. Retrieved on 2008-09-07. 
  63. ^ "mission". laptop.org. http://www.laptop.org/en/vision/mission/index.shtml. Retrieved on 2008-08-14. 
  64. ^ One Laptop per Child (OLPC), Progress: Discover the origins of OLPC[dead link]
  65. ^ "Industry of Change: Linux Storms Hollywood". http://www.linuxjournal.com/article/5472. Retrieved on 2009-03-11. 
  66. ^ "Tux with Shades, Linux in Hollywood". http://video.fosdem.org/2008/maintracks/FOSDEM2008-tuxwithshades.ogg. Retrieved on 2009-03-11. 
  67. ^ "LinuxMovies.org - Advancing Linux Motion Picture Technology". http://www.linuxmovies.org/. Retrieved on 2009-03-11. 
  68. ^ "Linus Torvalds interview". Archived from the original on 2007-03-11. http://web.archive.org/web/20070311190841/http://kde.sw.com.sg/food/linus.html. Retrieved on 2007-09-13. 
  69. ^ Torvalds, Linus (2006-01-26). "Re: GPL V3 and Linux ─ Dead Copyright Holders". Linux Kernel Mailing List. http://lkml.org/lkml/2006/1/25/273. 
  70. ^ Torvalds, Linus (2006-09-25). "Re: GPLv3 Position Statement". Linux Kernel Mailing List. http://lkml.org/lkml/2006/9/25/161. 
  71. ^ a b Wheeler, David A (2002-07-29). "More Than a Gigabuck: Estimating GNU/Linux's Size". http://www.dwheeler.com/sloc/redhat71-v1/redhat71sloc.html. Retrieved on 2006-05-11. 
  72. ^ Amor, Juan José; et al (17 June 2007). "Measuring Etch: the size of Debian 4.0". https://penta.debconf.org/~joerg/attachments/33-measuring_etch_slides.pdf. Retrieved on 2007-09-16. 
  73. ^ "U.S. Reg No: 1916230". United States Patent and Trademark Office. http://assignments.uspto.gov/assignments/q?db=tm&rno=1916230. Retrieved on 2006-04-01. 
  74. ^ "Linux Timeline". Linux Journal. 31 May 2006. http://www.linuxjournal.com/article/9065. 
  75. ^ "Linus gets tough on Linux trademark". 2005-09-05. http://www.infoworld.com/article/05/09/05/36OPopenent_1.html. Retrieved on 2006-09-04. 
  76. ^ Stallman, Richard (2007-03-03). "Linux and the GNU Project". Free Software Foundation. http://www.gnu.org/gnu/linux-and-gnu.html. Retrieved on 2007-03-12. 
  77. ^ Canonical Ltd. (2009). "About Ubuntu". http://www.ubuntu.com/. Retrieved on 2009-03-22. 
  78. ^ Torvalds, Linus (2006-09-25). "GPLv3 Position Statement". Linux Kernel Mailing List . ORG. http://lkml.org/lkml/2006/9/25/161. Retrieved on 2009-01-05. 

[edit] External links

Find more about Linux on Wikipedia's sister projects:
Definitions from Wiktionary

Textbooks from Wikibooks
Quotations from Wikiquote
Source texts from Wikisource
Images and media from Commons
News stories from Wikinews

Learning resources from Wikiversity

Personal tools