Linux kernel

Linux kernel
Linux
Tux
Linux 3.0.0 boot.png
Linux kernel 3.0.0 booting
Company / developer Linus Torvalds and thousands of collaborators
OS family Unix-like
Initial release 1991
Latest stable release Kernel: 3.1.1  (11 November 2011; 2 days ago (2011-11-11))[1] [+/−]
Latest unstable release Kernel: 3.2-rc1  (7 November 2011; 6 days ago (2011-11-07))[2] [+/−]
Available language(s) English
Kernel type Monolithic
License GNU General Public License version 2 (only)[3][4] plus various closed source binary blobs[5]
Official website www.kernel.org

The Linux kernel is an operating system kernel used by the Linux family of Unix-like operating systems.[6] It is one of the most prominent examples of free and open source software.[7]

The Linux kernel is released under the GNU General Public License version 2 (GPLv2)[4] (plus some firmware images with various non-free licenses), and is developed by contributors worldwide. Day-to-day development discussions take place on the Linux kernel mailing list.

The Linux kernel was initially conceived and created by Finnish computer science student[8] Linus Torvalds in 1991. Linux rapidly accumulated developers and users who adapted code from other free software projects for use with the new operating system.[9] The Linux kernel has received contributions from thousands of programmers.[10] Many Linux distributions have been released based upon the Linux kernel.

Contents

History

In April 1991, Linus Torvalds, a 21-year-old student at the University of Helsinki, Finland started working on some simple ideas for an operating system. He started with a task switcher in Intel 80386 assembly language and a terminal driver. On 25 August 1991, Torvalds posted the following to comp.os.minix, a newsgroup on Usenet:

I'm doing a (free) operating system (just a hobby, won't be big and professional like gnu) for 386(486) AT clones. This has been brewing since April, and is starting to get ready. I'd like any feedback on things people like/dislike in minix, as my OS resembles it somewhat (same physical layout of the file-system (due to practical reasons) among other things).

I've currently ported bash(1.08) and gcc(1.40), and things seem to work. This implies that I'll get something practical within a few months [...] Yes - it's free of any minix code, and it has a multi-threaded fs. It is NOT portable (uses 386 task switching etc), and it probably never will support anything other than AT-harddisks, as that's all I have :-(.

[...] It's mostly in C, but most people wouldn't call what I write C. It uses every conceivable feature of the 386 I could find, as it was also a project to teach me about the 386. As already mentioned, it uses a MMU, for both paging (not to disk yet) and segmentation. It's the segmentation that makes it REALLY 386 dependent (every task has a 64Mb segment for code & data - max 64 tasks in 4Gb. Anybody who needs more than 64Mb/task - tough cookies). [...] Some of my "C"-files (specifically mm.c) are almost as much assembler as C. [...] Unlike minix, I also happen to LIKE interrupts, so interrupts are handled without trying to hide the reason behind them.[11]

After that, many people contributed code to the project. Early on, the MINIX community contributed code and ideas to the Linux kernel. At the time, the GNU Project had created many of the components required for a free operating system, but its own kernel, GNU Hurd, was incomplete and unavailable. The BSD operating system had not yet freed itself from legal encumbrances. Despite the limited functionality of the early versions, Linux rapidly accumulated developers and users.

By September 1991, Linux version 0.01 was released, uploading it to the FTP server (ftp.funet.fi) of the Finnish University and Research Network (FUNET). It had 10,239 lines of code. In October 1991, Linux version 0.02 was released.[12]

In December 1991, Linux 0.11 was released. This version was the first to be self-hosted - Linux 0.11 could be compiled by a computer running Linux 0.11. When he released version 0.12 in February 1992, Torvalds adopted the GNU General Public License (GPL) over his previous self-drafted license, which had not permitted commercial redistribution.[13]

A newsgroup known as alt.os.linux was started, and on 19 January 1992, the first post to alt.os.linux was made.[14] On 31 March 1992, alt.os.linux became comp.os.linux.[15]

The X Window System was soon ported to Linux. In March 1992, Linux version 0.95 was the first to be capable of running X. This large version number jump (from 0.1x to 0.9x) was due to a feeling that a version 1.0 with no major missing pieces was imminent. However, this proved to be somewhat overoptimistic, and from 1993 to early 1994, 15 development versions of version 0.99 appeared.

On 14 March 1994, Linux 1.0.0 was released, with 176,250 lines of code. In March 1995, Linux 1.2.0 was released (310,950 lines of code).

Version 2 of Linux, released on 9 June 1996, was followed by additional major versions under the version 2 header:

  • 25 January 1999 - Linux 2.2.0 was released (1,800,847 lines of code).
  • 18 December 1999 - IBM mainframe patches for 2.2.13 were published, allowing Linux to be used on enterprise-class machines.
  • 4 January 2001 - Linux 2.4.0 was released (3,377,902 lines of code).
  • 17 December 2003 - Linux 2.6.0 was released (5,929,913 lines of code).

On 21 July 2011 Linus Torvalds announced the release of Linux 3.0: "Gone are the 2.6.<bignum> days".[16] The version bump is not about major technological changes when compared to Linux 2.6.39;[17] it marks the kernel's 20th anniversary.[18]

Legal aspects

Licensing terms

Initially, Torvalds released Linux under a license which forbade any commercial use. This was soon changed to the GNU General Public License (GPL), as of version 0.12. This license allows distribution and sale of possibly modified and unmodified versions of Linux but requires that all those copies be released under the same license and be accompanied by the complete corresponding source code.

Torvalds has described licensing Linux under the GPL as the "best thing I ever did."[19]

GPL version 3

Currently, Linux is licensed only under version 2 of the GPL,[4] without offering the licensee the option to choose "any later version" (unlike much other GPL software), and there is some controversy over how easily it could be changed to use later GPL versions such as the new version 3 (and whether this is even desirable).[20] Torvalds himself specifically indicated upon the release of version 2.4.0 that his own code is only under version 2.[21] However, the terms of the GPL state that if no version is specified, then any version may be used, and Alan Cox pointed out that very few other Linux contributors have specified a particular version of the GPL.[22] In September 2006, a survey of 29 key kernel programmers indicated 28 preferred GPLv2 to the then-current GPLv3 draft. Torvalds commented, "I think a number of outsiders... believed that I personally was just the odd man out, because I've been so publicly not a huge fan of the GPLv3."[23]

Loadable kernel modules and firmware

It is debated whether loadable kernel modules (LKMs) should be considered derivative works under copyright law, and thereby fall under the terms of the GPL. Torvalds has stated his belief that LKMs using only a limited, "public" subset of the kernel interfaces can sometimes be non-derived works, thus allowing some binary-only drivers and other LKMs that are not licensed under the GPL. Not all Linux contributors agree with this interpretation, however, and even Torvalds agrees that many LKMs are clearly derived works, and indeed he writes that "kernel modules ARE derivative 'by default'".[24] On the other hand Torvalds has also said that "one gray area in particular is something like a driver that was originally written for another operating system (i.e. clearly not a derived work of Linux in origin). [...] THAT is a gray area, and _that_ is the area where I personally believe that some modules may be considered to not be derived works simply because they weren't designed for Linux and don't depend on any special Linux behaviour."[25] Proprietary graphics drivers, in particular, are heavily discussed. Ultimately, it is likely that such questions can only be resolved by a court.

One point of licensing controversy is Linux's use of firmware "binary blobs" to support some hardware devices. These files are under a variety of licenses, many of them restrictive and their exact underlying source code is usually unknown. Richard Stallman claims that these blobs make Linux partially non-free software, and that distributing Linux may even be violating the GPL (which requires "complete corresponding source code" to be available).[5] In response, the FSFLA started a project, Linux-libre, to create a completely free kernel without proprietary objects, which is used by some completely free distributions, such as those endorsed by the Free Software Foundation.[26][27] On December 15, 2010 the Debian Project announced that the next Debian stable version would come with a kernel "stripped of all non-free firmware bits".[28]

Trademark

Linux is a registered trademark of Linus Torvalds in the United States and some other countries. This is the result of an incident in which William Della Croce, Jr., who was not involved in the Linux project, trademarked the name and subsequently demanded royalties for its use.[29] Several Linux backers retained legal counsel and filed suit against Della Croce. The issue was settled in August 1997 when the trademark was assigned to Linus Torvalds.[30][31]

SCO litigation

In March 2003, the SCO Group (SCO) filed a lawsuit against IBM claiming that IBM had violated copyrights that SCO claimed to hold over the Unix source code, by contributing portions of that code to Linux. Additionally, SCO sent letters to a number of companies warning that their use of Linux without a license from SCO may be a violation of copyright law, and claimed in the press that they would be suing individual Linux users. IBM then promised to defend its Linux customers on their behalf. This controversy has generated lawsuits by SCO against Novell, DaimlerChrysler (partially dismissed in July, 2004), and AutoZone, and retaliatory lawsuits by Red Hat and others against SCO.

In early 2007 SCO filed the specific details of the purported copyright infringement. Despite previous claims that SCO was the rightful owner of 1 million lines of code, they specified 326 lines of code, most of which were uncopyrightable.[32] In August 2007, the court in the Novell case ruled that SCO did not actually own the Unix copyrights to begin with,[33] though the Tenth Circuit Court of Appeals ruled in August 2009 that the question of who owned the copyright properly remained for a jury to answer.[34] The jury case was decided on 30 March 2010 in Novell's favour.[35]

Hyper-V submission by Microsoft

In July 2009 Microsoft submitted Hyper-V drivers to the kernel, which improve the performance of virtual Linux guest systems in a Windows hosted environment. Microsoft was forced to submit the code when it was discovered that Microsoft had incorporated a Hyper-V network driver with GPL-licensed components statically linked to closed-source binaries.[36][37][38][39][40]

Technical features

Linux supports true preemptive multitasking (both in user mode and kernel mode), virtual memory, shared libraries, demand loading, shared copy-on-write executables, memory management, the Internet protocol suite, and threading.

Architecture

Linux kernel map, and wall poster

Linux is a monolithic kernel. Device drivers and kernel extensions run in kernel space (ring 0 in many CPU architectures), with full access to the hardware, although some exceptions run in user space, for example filesystems based on FUSE. The graphics system most people use with Linux doesn't run in the kernel, in contrast to that found in Microsoft Windows.

Tanenbaum–Torvalds debate

The fact that Linux is a monolithic kernel rather than a microkernel was the topic of the Tanenbaum–Torvalds debate between Andrew S. Tanenbaum, the creator of Minix, and Linus Torvalds.[41] The debate started in 1992 about Linux and kernel architecture in general on the Usenet discussion group comp.os.minix.[42] Tanenbaum argued that microkernels are superior to monolithic kernels and that therefore Linux is obsolete. Unlike traditional monolithic kernels, device drivers in Linux are easily configured as loadable kernel modules and are loaded or unloaded while running the system. This subject was revisited on 9 May 2006,[43] and on 12 May 2006 Tanenbaum wrote a position statement.[44]

Preemption

Linux kernel provides preemptive scheduling under certain conditions. Until kernel version 2.4 processes only were preemptive, i.e. in addition to time quantum expiration, an execution of current process in User mode would be interrupted if higher dynamic priority processes would enter TASK_RUNNING state.[45] Towards Linux 2.6, an ability to interrupt a task executing kernel code was added, with that not all sections of the kernel code can be preempted.[46] Preemption improves latency, increasing responsiveness and making Linux more suitable for real-time applications.

Portability

iPodLinux booting Linux

While not originally designed to be portable, Linux is now one of the most widely ported operating system kernels, running on a diverse range of systems from the ARM architecture to the IBM Z/Architecture (a massive mainframe server that can run hundreds to thousands of concurrent Linux instances). Linux runs as the main operating system on IBM's Blue Gene supercomputers. As of November 2010, Linux is the OS on 91.8% of systems on the TOP500 supercomputers list.[47] Linux has also been ported to various handheld devices such as TuxPhone, Apple's iPod and iPhone.[48] Some operating systems developed for mobile phones use modified versions of the Linux kernel including Google Android, HP webOS, and Nokia Maemo.[49][50][51]

Kernel panic

Kernel panic

In Linux, a "panic" is an unrecoverable system error detected by the kernel contrary to similar errors detected by user space code. It is possible for kernel code to indicate such a condition by calling the panic function located in the header file sys/system.h. However, most panics are the result of unhandled processor exceptions in kernel code, such as references to invalid memory addresses. These are typically indicative of a bug somewhere in the call chain leading to the panic. They can also indicate a failure of hardware, such as a failed RAM cell or errors in arithmetic functions in the processor caused by a processor bug, overheating/damaged processor, or a soft error.

Kernel oops

A report of a bug in the kernel is called an "OOPS".[52] It is automatically collected by the kerneloops software,[53] the abrt kernel oops plugin,[54] or apport. KernelOops.org collects these reports and publishes statistics on their website.[55]

Programming languages

Linux is written in the version of the C programming language supported by GCC (which has introduced a number of extensions and changes to standard C), together with a number of short sections of code written in the assembly language (in GCC's "AT&T-style" syntax) of the target architecture. Because of the extensions to C it supports, GCC was for a long time the only compiler capable of correctly building Linux. In 2004, Intel claimed to have modified the kernel so that its C compiler also was capable of compiling it.[56] There was another such reported success in 2009 with a modified 2.6.22.[57][58]

Estimated cost to redevelop

The cost to redevelop the Linux kernel version 2.6.0 in a traditional proprietary development setting has been estimated to be $612 million USD (€467 million euro, £394 million GBP) in 2004 prices using the COCOMO man-month estimation model.[59] In 2006, a study funded by the European Union put the redevelopment cost of kernel version 2.6.8 higher, at €882 million euro ($1.14 billion USD, £744 million GBP).[60]

This topic was revisited in October 2008 by Amanda McPherson, Brian Proffitt and Ron Hale-Evans. Using David A. Wheeler's methodology, they estimated redevelopment of the 2.6.25 kernel now costs $1.3 billion (part of a total $10.8 billion to redevelop Fedora 9).[61] Again, Garcia-Garcia and Alonso de Magdaleno from University of Oviedo (Spain) estimate that the value annually added to kernel was about 100 million EUR between 2005 and 2007 and 225 million EUR in 2008, it would cost also more than one billion EUR (about 1.4 billion USD) to develop in the European Union.[62]

As of January 4, 2011, using current LOC and wage numbers with David A. Wheeler's calculations it would cost approximately 3 billion USD (about 2.2 billion EUR) to redevelop the Linux kernel.[63]

Feature history

Version 1.0 of the Linux kernel was released on 14 March 1994.[64] This release of the Linux kernel only supported single-processor i386-based computer systems. Portability became a concern, and so version 1.2 (released 7 March 1995)[65] gained support for computer systems using processors based on the Alpha, SPARC, and MIPS architectures.

Version 2.0 was released 9 June 1996.[66] There were 41 releases in the series. The major feature of 2.0 was SMP support (that is, support for multiple processors in a single system) and support for more types of processors.

Version 2.2 (released 26 January 1999)[67] removed the global spinlock and provided improved SMP support, and added support for the m68k and PowerPC architectures as well as new file systems (including read-only support for Microsoft’s NTFS).[68]

Version 2.4.0, released on 4 January 2001,[69] contained support for ISA Plug and Play, USB, and PC Cards.[70] It also included support for the PA-RISC processor from Hewlett-Packard. Development for 2.4.x changed a bit in that more features were made available throughout the duration of the series, including: support for Bluetooth, Logical Volume Manager (LVM) version 1, RAID support, InterMezzo and ext3 file systems.

Version 2.6.0 was released on 18 December 2003.[71] The development for 2.6.x changed further towards including new features throughout the duration of the series. Among the changes that have been made in the 2.6 series are: integration of µClinux into the mainline kernel sources, PAE support, support for several new lines of CPUs, integration of ALSA into the mainline kernel sources, support for up to 232 users (up from 216), support for up to 229 process IDs (up from 215), substantially increased the number of device types and the number of devices of each type, improved 64-bit support, support for file systems of up to 16 terabytes, in-kernel preemption, support for the Native POSIX Thread Library (NPTL), User-mode Linux integration into the mainline kernel sources, SELinux integration into the mainline kernel sources, InfiniBand support, and considerably more. Also notable are the addition of several file systems throughout the 2.6.x releases: FUSE, JFS, XFS, ext4 and more. Details on the history of the 2.6 kernel series can be found in the ChangeLog files on the 2.6 kernel series source code release area of kernel.org.

Version 3.0 was released 22 Jul 2011. Torvalds announced that the big change was, "NOTHING. Absolutely nothing."[72] 30 May 2011 saw Torvalds announce, "...let's make sure we really make the next release not just an all new shiny number, but a good kernel too." After the expected 6–7 week development process, it would be released near the 20th anniversary of Linux.[72]

Security

Computer security is a much-publicized topic in relation to the Linux kernel, because a large number of bugs in the kernel can be potential security flaws, whether they allow privilege escalation or create denial-of-service attack vectors. Over the years, numerous such flaws were found and fixed in the Linux kernel.[73] Numerous new security features have continuously been implemented to address computer insecurity issues in the Linux kernel.[74][75]

Critics have accused kernel developers of covering up security flaws or at least not announcing them. In response Linus Torvalds in 2008 replied, "I personally consider security bugs to be just 'normal bugs'. I don't cover them up, but I also don't have any reason what-so-ever to think it's a good idea to track them and announce them as something special...one reason I refuse to bother with the whole security circus is that I think it glorifies - and thus encourages - the wrong behavior. It makes 'heroes' out of security people, as if the people who don't just fix normal bugs aren't as important. In fact, all the boring normal bugs are _way_ more important, just because there's a lot more of them. I don't think some spectacular security hole should be glorified or cared about as being any more 'special' than a random spectacular crash due to bad locking."[76][77]

For example, the vmsplice() local root exploit was a short-lived vulnerability in the Linux kernel that allowed a user with shell access to mount a privilege escalation attack to gain root privileges against a system running versions of 2.6.17 or later of the kernel.[78][79] This was fixed in kernel version 2.6.24.2.[78]

Development

Timeline

Source: kernel.org[80]

Development model

The current development model of the Linux kernel is such that Linus Torvalds makes the releases of new versions, also called the "vanilla" or "mainline" kernels, meaning that they contain the main, generic branch of development. This branch is officially released as a new version approximately every three months, after Torvalds does an initial round of integrating major changes made by all other programmers, and several rounds of bug-fix pre-releases.

In the current scheme, the main branch of development is not a traditional "stable" branch, instead it incorporates all kinds of changes, both the latest features as well as security and bug fixes. For users who do not want to risk updating to new versions containing code that may not be well tested, a separate set of "stable" branches exist, one for each released version, which are meant for people who just want the security and bug fixes, but not a whole new version. These branches are maintained by the stable team (Greg Kroah-Hartman, Chris Wright, maybe others).

Most Linux users use a kernel supplied by their Linux distribution. Some distributions ship the "vanilla" and/or "stable" kernels. However, several Linux distribution vendors (such as Red Hat and Debian) maintain another set of Linux kernel branches which are integrated into their products. These are by and large updated at a slower pace compared to the "vanilla" branch, and they usually include all fixes from the relevant "stable" branch, but at the same time they can also add support for drivers or features which had not been released in the "vanilla" version the distribution vendor started basing their branch from.

The development model for Linux 2.6 was a significant change from the development model for Linux 2.5. Previously there was a stable branch (2.4) where only relatively minor and safe changes were merged, and an unstable branch (2.5), where bigger changes and cleanups were allowed. Both of these branches had been maintained by the same set of people, led by Torvalds. This meant that users would always have a well-tested 2.4 version with the latest security and bug fixes to use, though they would have to wait for the features which went into the 2.5 branch. The downside of this was that the "stable" kernel ended up so far behind that it no longer supported recent hardware and lacked needed features. In the late 2.5.x series kernel some maintainers elected to try and back port their changes to the stable series kernel which resulted in bugs being introduced into the 2.4.x series kernel. The 2.5 branch was then eventually declared stable and renamed to 2.6. But instead of opening an unstable 2.7 branch, the kernel developers decided to continue putting major changes into the 2.6 branch, which would then be released at a pace faster than 2.4.x but slower than 2.5.x. This had the desirable effect of making new features more quickly available and getting more testing of the new code, which was added in smaller batches and easier to test.

As a response to the lack of a stable kernel tree where people could coordinate the collection of bug fixes as such, in December 2005 Adrian Bunk announced that he would keep releasing 2.6.16.y kernels when the stable team moved on to 2.6.17.[81] He also included some driver updates, making the maintenance of the 2.6.16 series very similar to the old rules for maintenance of a stable series such as 2.4.[82] Since then, the "stable team" had been formed, and it would keep updating kernel versions with bug fixes. In October 2008 Adrian Bunk announced that he will maintain 2.6.27 for a few years as a replacement of 2.6.16.[83] The stable team picked up on the idea[84] and as of 2010 they continue to maintain that version and release bug fixes for it, in addition to others.

After the change of the development model with 2.6.x, developers continued to want what one might call an unstable kernel tree, one that changes as rapidly as new patches come in. Andrew Morton decided to repurpose his -mm tree from memory management to serve as the destination for all new and experimental code. In September 2007 Morton decided to stop maintaining this tree.[85] In February 2008, Stephen Rothwell created the linux-next tree to serve as a place where patches aimed to be merged during the next development cycle are gathered.[86][87] Several subsystem maintainers also adopted the suffix -next for trees containing code which is meant to be submitted for inclusion in the next release cycle.

Maintenance

While Linus Torvalds supervises code changes and releases to the latest kernel versions, he has delegated the maintenance of older versions to other programmers. Major releases as old as 2.0 (officially made obsolete with the kernel 2.2.0 release in January 1999) are maintained as needed, although at a very slow pace.

Kernel series Current version Maintainer Support Model
2.0 2.0.40[88] David Weinehall EOL (Officially made obsolete with the kernel 2.2.0 release)
2.2 2.2.26[89] Marc-Christian Petersen (former maintainer Alan Cox) EOL (Unofficially obsolete with the 2.2.27-rc2)[90]
2.4 2.4.37.11[91] Willy Tarreau (former maintainer Marcelo Tosatti) Will be EOL, if no major bugs reported, by the end of 2011[92]
2.6.16 2.6.16.62[93] Adrian Bunk EOL (was the first long-term stable release, replaced by 2.6.27.xx)[83]
2.6.27 2.6.27.59[94] Willy Tarreau (former maintainer Greg Kroah-Hartman) long-term stable release. From 9 October 2008[95] to 201?
2.6.32 2.6.32.47[94] Greg Kroah-Hartman[96] long-term stable release. From 3 December 2009[97] to 2011 /2012[98]
2.6.33 2.6.33.20[94] Greg Kroah-Hartman long-term stable release. From March 2011 to November 2011 [99]
2.6.34 2.6.34.10[94] Paul Gortmaker long-term stable release. From January 2011 to 20??
2.6.35 2.6.35.14[94] Andi Kleen long-term stable release. From December 2010 to 20??
2.6 2.6.39.4[94] Linus Torvalds last stable release of the 2.6 kernel series.
3.0 3.0.8[100] Linus Torvalds
3.1 3.1 latest stable version (releases every two-three months)
linux-next next-20110930[2] latest development version

Other Linux kernel programmers who maintain subsystems inside the kernel[101] include:

  • Robert Love: preemptible kernel, inotify
  • Ingo Molnár: x86 architecture, scheduler, locking
  • David S. Miller: networking, SPARC architecture
  • Hans Peter Anvin: x86 architecture, kernel automounter

Revision control

The Linux kernel source code used to be maintained without the help of an automated source code management system, mostly because of Linus Torvalds' dislike of centralized SCM systems.

In 2002, Linux kernel development switched to BitKeeper, a SCM system which satisfied Linus Torvalds' technical requirements. BitKeeper was made available to Linus and several others free of charge, but was not free software, which was a source of controversy. The system did provide some interoperability with free SCM systems such as CVS and Subversion.

In April 2005, however, efforts to reverse-engineer the BitKeeper system by Andrew Tridgell led BitMover, the company which maintained BitKeeper, to stop supporting the Linux development community. In response, Linus Torvalds and others wrote a new source code control system for the purpose, called Git. The new system was written within weeks, and in two months the first official kernel release was made using git.[102] Git soon developed into a separate project in its own right and gained wider adoption in the free software community.

Version numbering

The Linux kernel has had three different numbering schemes.

The first version of the kernel was 0.01. This was followed by 0.02, 0.03, 0.10, 0.11, 0.12 (the first GPL version), 0.95, 0.96, 0.97, 0.98, 0.99 and then 1.0.[103] From 0.95 on there were many patch releases between versions.

After the 1.0 release and prior to version 2.6, the version was composed as "A.B.C", where the number A denoted the kernel version, the number B denoted the major revision of the kernel, and the number C indicated the minor revision of the kernel. The version was changed only when major changes in the code and the concept of the kernel occurred, thrice in the history of the kernel: In 1994 (version 1.0), in 1996 (version 2.0) and in 2011 (version 3.0). The major revision was used according to the traditional even-odd system version numbering system. The minor revision had been changed whenever security patches, bug fixes, new features or drivers were implemented in the kernel. The third version change (version 3.0) was made in honor of the 20th anniversary of Linux with no major code or concept changes. It brought with it a change in the version numbering to a time-based system.[104]

Since 2004, after version 2.6.0 was released, the kernel developers held several discussions regarding the release and version scheme[105][106] and ultimately Linus Torvalds and others decided that a much shorter release cycle would be beneficial. Since then, the version has been composed of three or four numbers. The first two numbers, which were unchanged for nearly 7 years, became largely irrelevant, and the third number is the actual version of the kernel. The fourth number accounts for bug and security fixes (only) to the kernel version.

The first use of the fourth number occurred when a grave error, which required immediate fixing, was encountered in 2.6.8's NFS code. However, there were not enough other changes to legitimize the release of a new minor revision (which would have been 2.6.9). So, 2.6.8.1 was released, with the only change being the fix of that error. With 2.6.11, this was adopted as the new official versioning policy. Later it became customary to continuously back-port major bug-fixes and security patches to released kernels and indicate that by updating the fourth number.

On 29 May 2011, Linus Torvalds announced[107] that the kernel version would be bumped to 3.0 for the release following 2.6.39, in honor of the 20th anniversary of Linux.

Regular development pre-releases are titled release candidates, which is indicated by appending the suffix 'rc' to the kernel version, followed by an ordinal number.

Also, sometimes the version will have a suffix such as 'tip', indicating another development branch, usually (but not always) the initials of a person who made it. For example, 'ck' stands for Con Kolivas, 'ac' stands for Alan Cox, etc. Sometimes, the letters are related to the primary development area of the branch the kernel is built from, for example, 'wl' indicates a wireless networking test build. Also, distributors may have their own suffixes with different numbering systems and for back-ports to their "Enterprise" (i.e. stable but older) distribution versions.

See also

References

  1. ^ Linus Torvalds (11 November 2011). "The Linux Kernel Archives". https://lkml.org/lkml/2011/11/11/255. Retrieved 11 November 2011. 
  2. ^ a b Linus Torvalds (7 November 2011). "Linux 3.2-rc1". https://lkml.org/lkml/2011/11/7/562. Retrieved 11 November 2011. 
  3. ^ InfoWorld. "Linux creator Torvalds still no fan of GPLv3". http://www.infoworld.com/article/06/07/28/HNtorvaldsnofan_1.html. Retrieved 2008-10-11. 
  4. ^ a b c COPYING
  5. ^ a b Stallman, Richard (2002). "Linux, GNU, and freedom". Free Software Foundation. http://www.gnu.org/philosophy/linux-gnu-freedom.html. Retrieved 2007-02-21. 
  6. ^ "README". git.kernel.org. http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=README;h=90a07658ede14840346eee6610648bcf4ec79997;hb=f3b8436ad9a8ad36b3c9fa1fe030c7f38e5d3d0b. Retrieved 2010-11-12. 
  7. ^ Linus Torvalds (2006-09-25). "Re: GPLv3 Position Statement". http://lkml.org/lkml/2006/9/25/161. 
  8. ^ Marjorie Richardson (1 November 1999). "Interview: Linus Torvalds". Linux Journal. http://www.linuxjournal.com/article/3655. Retrieved 20 August 2009. 
  9. ^ "Free as in Freedom by Sam Williams. O'Reilly books, 2002". Oreilly.com. http://www.oreilly.com/openbook/freedom/ch09.html. Retrieved 2010-11-12. 
  10. ^ Greg Kroah-Hartman (April 2008). "Linux Kernel Development: How Fast it is Going, Who is Doing It, What They are Doing, and Who is Sponsoring It". http://www.linuxfoundation.org/publications/linuxkerneldevelopment.php. "Since 2005, over 3700 individual developers from over 200 different companies have contributed to the kernel." 
  11. ^ Torvalds, Linus Benedict. "What would you like to see most in minix?". comp.os.minix. (Web link). 
  12. ^ Torvalds, Linus Benedict. "Free minix-like kernel sources for 386-AT". comp.os.minix. (Web link). 
  13. ^ Torvalds, Linus. "Release Notes for Linux v0.12". The Linux Kernel Archives. http://www.kernel.org/pub/linux/kernel/Historic/old-versions/RELNOTES-0.12. Retrieved 2007-02-21. 
  14. ^ Summers, David W (19 January 1992). "Troubles with Partitions". comp.os.minix. (Web link). Retrieved 2007-01-07. 
  15. ^ Clegg, Alan B (31 March 1992). "It's here!". comp.os.linux. (Web link). Retrieved 2007-01-07. 
  16. ^ Linux 3.0 release, Linus Torvalds, Linux Kernel Mailing List, Thu, 21 Jul 2011 19:59:53 -0700
  17. ^ "Linux Kernel Data."
  18. ^ Linux 3.0 Released; Linus Torvalds Explains Why You Shouldn't Care by Mark Hachman, July 22, 2011 01:35pm EST, PC Magazine
  19. ^ Yamagata, Hiroo (1997). "The Pragmatist of Free Software". HotWired. Archived from the original on 2007-02-10. http://web.archive.org/web/20070210224351/http://hotwired.goo.ne.jp/matrix/9709/5_linus.html. Retrieved 2007-02-21. 
  20. ^ Corbet, Jonathan (2006-01-31). "GPLv3 and the kernel". LWN.net. http://lwn.net/Articles/169797/. Retrieved 2007-02-21. 
  21. ^ Torvalds, Linus (2000-09-08). "Linux-2.4.0-test8". Linux-kernel mailing list archive. Unix Systems Support Group of Indiana University. http://www.uwsg.iu.edu/hypermail/linux/kernel/0009.1/0096.html. Retrieved 2007-02-21. 
  22. ^ Cox, Alan (2006-01-20). "Re: GPL V3 and Linux". Linux-kernel mailing list archive. LWN.net. http://lwn.net/Articles/169831/. Retrieved 2007-02-21. 
  23. ^ Shankland, Stephen (25 September 2006). "Top Linux programmers pan GPL 3". News.com. http://news.com.com/Top+Linux+programmers+pan+GPL+3/2100-7344_3-6119372.html. Retrieved 2007-02-21. 
  24. ^ Linus Torvalds (2003-12-10). "RE: Linux GPL and binary module exception clause?". http://lkml.org/lkml/2003/12/10/123. 
  25. ^ Linus Torvalds <torvalds@osdl.org> (2003-12-03). "Re: Linux GPL and binary module exception clause?". Ussg.iu.edu. http://www.ussg.iu.edu/hypermail/linux/kernel/0312.0/0670.html. Retrieved 2010-11-12. 
  26. ^ "Linux-libre project". www.fsfla.org. http://www.fsfla.org/svnwiki/selibre/linux-libre/index. Retrieved 2009-10-05. 
  27. ^ "Trisquel GNU/Linux-libre". trisquel.info. http://trisquel.info/en/forum/trisquel-gnulinux-libre. Retrieved 2009-10-05. 
  28. ^ Debian 6.0 "Squeeze" to be released with completely free Linux Kernel
  29. ^ Hughes, Phil (1997-08-01). "Linux Trademark Dispute". Linux Journal. http://www.linuxjournal.com/article/2425/. Retrieved 2010-12-08. 
  30. ^ Action Taken on Linux Trademark, Mar 01, 1997 by Phil Hughes, Linux Journal
  31. ^ The Trademark History of Linux, the Operating System by Tonya Gisselberg, 2010
  32. ^ "Report from the Courthouse 7 March". http://www.groklaw.net/articlebasic.php?story=20070308014847709.  Groklaw article
  33. ^ "Court Rules: Novell owns the UNIX and UnixWare copyrights". http://www.groklaw.net/article.php?story=20070810165237718.  Groklaw article
  34. ^ Ryan, Justin (August 2009). "SCO Will Try Again". http://www.linuxjournal.com/content/sco-will-try-again. Retrieved 2009-08-30. 
  35. ^ Harvey, Tom (2010-03-30). "Jury says Novell owns Unix copyrights". The Salt Lake Tribune. MediaNews Group. http://www.sltrib.com/news/ci_14786202. Retrieved 2010-03-30. 
  36. ^ Paul, Ryan (July 2009). "Microsoft aims at VM market with Linux kernel code offering". http://arstechnica.com/microsoft/news/2009/07/microsoft-aims-at-vm-market-with-linux-kernel-code-offering.ars. Retrieved 2009-07-22. 
  37. ^ Holwerda, Thom (July 2009). "Microsoft's Linux Kernel Code Drop Result of GPL Violation". http://www.osnews.com/story/21882/Microsoft_s_Linux_Kernel_Code_Drop_Result_of_GPL_Violation. Retrieved 2009-07-23. 
  38. ^ Microsoft (July 2009). "Microsoft Contributes Linux Drivers to Linux Community". http://www.microsoft.com/presspass/features/2009/Jul09/07-20LinuxQA.mspx. Retrieved 2009-07-23. 
  39. ^ Richmond, Gary (August 2009). "Yes Linus, Microsoft hating is a disease. And it's a pandemic". http://www.freesoftwaremagazine.com/columns/yes_linus_microsoft_hating_disease_and_its_pandemic. Retrieved 2009-08-01. 
  40. ^ Anderson, Paul, Prospect Magazine (July 2009). "Is Microsoft opening up at last?". http://www.prospectmagazine.co.uk/tag/microsoft/. Retrieved 2010-02-15. 
  41. ^ O'Reilly (1999). "The Tanenbaum-Torvalds Debate". O'Reilly. http://www.oreilly.com/catalog/opensources/book/appa.html. Retrieved 2006-11-22. 
  42. ^ Tanenbaum, Andy (29 January 1992). "LINUX is obsolete". comp.os.minix. (Web link). Retrieved 2006-05-10. 
  43. ^ Torvalds, Linus (9 May 2006). "Hybrid kernel, not NT". http://www.realworldtech.com/forums/index.cfm?action=detail&id=66630&threadid=66595&roomid=11. Retrieved 2007-01-06. 
  44. ^ Tanenbaum, Andy (12 May 2006). "Tanenbaum-Torvalds Debate: Part II". http://www.cs.vu.nl/~ast/reliable-os/. Retrieved 2007-01-06. 
  45. ^ Chapter 10, Understanding the Linux Kernel, By Daniel P. Bovet & Marco Cesati, October 2000
  46. ^ Towards Linux 2.6, A look into the workings of the next new kernel, Anand Santhanam, IBM Global Services, 23 Sep 2003
  47. ^ "Operating system Family". Top 500 Supercomputer Sites. November 2010. http://www.top500.org/stats/list/36/osfam/. 
  48. ^ "Android Now Running On iPhone 3G". 2010-05-07. http://www.pcworld.com/article/195789/android_now_running_on_iphone_3g.html. Retrieved 2010-07-11. 
  49. ^ Greg Kroah-Hartman (2010-02-02). "Android and the Linux kernel community". http://www.kroah.com/log/linux/android-kernel-problems.html. Retrieved 2010-02-03. "This means that any drivers written for Android hardware platforms, can not get merged into the main kernel tree because they have dependencies on code that only lives in Google's kernel tree, causing it to fail to build in the kernel.org tree. Because of this, Google has now prevented a large chunk of hardware drivers and platform code from ever getting merged into the main kernel tree. Effectively creating a kernel branch that a number of different vendors are now relying on." 
  50. ^ "Linux developer explains Android kernel code removal". ZDNet. 2010-02-02. http://news.zdnet.com/2100-9595_22-389733.html. Retrieved 2010-02-03. 
  51. ^ "Maemo platform described as being based on Linux kernel". Maemo community. 2010-04-09. http://maemo.org/intro/platform/. Retrieved 2010-04-09. 
  52. ^ "Linux-Kernel Archive: Re: what's an OOPS". Lkml.indiana.edu. http://lkml.indiana.edu/hypermail/linux/kernel/0303.1/0009.html. Retrieved 2010-10-30. 
  53. ^ "kerneloops(8) - Linux man page". Linux.die.net. http://linux.die.net/man/8/kerneloops. Retrieved 2010-10-30. 
  54. ^ "Features/ABRTF12". FedoraProject. 2009-08-03. http://fedoraproject.org/wiki/Features/ABRTF12. Retrieved 2010-10-30. 
  55. ^ "Kerneloops.org". Kerneloops.org. http://kerneloops.org/. Retrieved 2010-11-12. 
  56. ^ Ingo A. Kubbilun (2004-06-02). "Linux kernel patch for Intel Compiler". Pyrillion.org. http://www.pyrillion.org/index.html?showframe=linuxkernelpatch.html. Retrieved 2010-11-12. 
  57. ^ "Slashdot | High Performance Linux Kernel Project — LinuxDNA". Linux.slashdot.org. http://linux.slashdot.org/article.pl?sid=09/02/26/2216241. Retrieved 2010-10-30. 
  58. ^ "LinuxDNA Supercharges Linux with the Intel C/C++ Compiler". Linux Journal. http://www.linuxjournal.com/content/linuxdna-supercharges-linux-intel-cc-compiler. Retrieved 2010-10-30. 
  59. ^ David A. Wheeler. "Linux Kernel 2.6: It's Worth More!". http://www.dwheeler.com/essays/linux-kernel-cost.html. 
  60. ^ Economic impact of FLOSS on innovation and competitiveness of the EU ICT sector, Table 3 on page 50.
  61. ^ Estimating Total Development Cost Of a Linux Distribution, Table on page 6.
  62. ^ "The Billion Dollar Kernel". Linux.slashdot.org. 2010-02-24. http://linux.slashdot.org/story/10/02/24/155214/The-Billion-Dollar-Kernel. Retrieved 2010-11-12. 
  63. ^ "The Cost of Linux". linuxcost.blogspot.com. 2011-03-07. http://linuxcost.blogspot.com/2011/03/cost-of-linux.html. Retrieved 7 March 2011. 
  64. ^ Kernel 1.0 Source Code Release (last checked 2008-10-27)
  65. ^ Kernel 1.2 Source Code Release (last checked 2008-10-27)
  66. ^ Kernel 2.0.x Source Code Releases (last checked 2008-10-27)
  67. ^ Kernel 2.2.x Source Code Releases (last checked 2008-10-27
  68. ^ The Wonderful World of Linux 2.2 (last checked 2008-10-27)
  69. ^ Kernel 2.4.x Source Code Releases (last checked 2008-10-27)
  70. ^ The Wonderful World of Linux 2.4 (last checked 2008-10-27)
  71. ^ Kernel 2.6.x.y Source Code Releases (last checked 2008-10-27)
  72. ^ a b Linux 3.0-rc1, Linus Torvalds, 30 May 2011, accessed 31 May 2011
  73. ^ K.K. Mookhey, Nilesh Burghate and ISACA (2005). Linux-- Security, Audit and Control Features. ISACA. p. 14. ISBN 1893209784. http://books.google.com/books?id=-kD0sxQ0EkIC&pg=PA14. 
  74. ^ Brian Hatch (2008). Hacking exposed Linux: Linux security secrets & solutions. McGraw Hill Professional. p. 524. ISBN 0072262575. http://books.google.com/books?id=f5Vz08spzw8C&pg=PA524. 
  75. ^ Trent Jaeger (2008). Operating system security. Morgan & Claypool Publishers. p. 122. ISBN 1598292129. http://books.google.com/books?id=P4PYPSv8nBMC&pg=PA122. 
  76. ^ Jeremy Andrews (2008-07-16). "Security Bugs and Full Disclosure". http://kerneltrap.org/Linux/Security_Bugs_and_Full_Disclosure. Retrieved 2010-12-31. 
  77. ^ Brad Spengler (2008-07-16). "Linux's unofficial security-through-coverup policy". Full-Disclosure mailing list. http://seclists.org/fulldisclosure/2008/Jul/276. Retrieved 2010-12-31. 
  78. ^ a b Purczynskiof, Wojciech; qaaz (2008-02-11). "Linux Kernel "vmsplice()" System Call Vulnerabilities". Secunia. http://secunia.com/advisories/28835/. Retrieved 2008-04-16. 
  79. ^ Dawson (2008-02-10). "Linux Kernel "vmsplice()" System Call Vulnerabilities". Slashdot (SourceForge). http://it.slashdot.org/article.pl?sid=08/02/10/2011257. Retrieved 2008-04-16. 
  80. ^ "Index of /pub/linux/kernel". Kernel.org. http://www.kernel.org/pub/linux/kernel/. Retrieved 2010-10-30. 
  81. ^ Jeremy Offline (2001-10-13). "Linux: 2.6.16.y Lives On". KernelTrap. http://kerneltrap.org/node/6930. Retrieved 2010-10-30. 
  82. ^ Jeremy Offline (2001-10-13). "Linux: Maintaining A 2.6.16.y Tree". KernelTrap. http://kerneltrap.org/node/6386. Retrieved 2010-10-30. 
  83. ^ a b "'Linux 2.6.27 will be a longtime supported kernel' - MARC". Marc.info. 2008-10-11. http://marc.info/?l=linux-kernel&m=122375909403298&w=2. Retrieved 2010-10-30. 
  84. ^ Greg Kroah-Hartman (2009-09-08). "Re: 2.6.27 maintenance plans after 2.6.32 is released". linux-kernel mailing list. http://marc.info/?l=linux-kernel&m=125245118518458. 
  85. ^ 2.6.23-rc6-mm1, "This Just Isn't Working Any More", from KernelTrap
  86. ^ "Stephen Rothwell: Announce: Linux-next (Or Andrew's dream :-))". LKML. http://lkml.org/lkml/2008/2/11/512. Retrieved 2010-10-30. 
  87. ^ "linux-next and patch management process". Lwn.net. 2010-10-21. http://lwn.net/Articles/269120/. Retrieved 2010-10-30. 
  88. ^ David Weinehall (2004-02-08). "[ANNOUNCE] Linux-kernel 2.0.40 aka ``The Moss-covered Tortoise''". http://kerneltrap.org/node/2279. 
  89. ^ Marc-Christian Petersen (2004-02-25). "Linux 2.2.26". http://marc.info/?l=linux-kernel&m=107766971215138. 
  90. ^ Marc-Christian Petersen (2005-01-13). "Linux 2.2.27-rc2". http://kerneltrap.org/node/4533. 6
  91. ^ ftp://ftp.kernel.org/pub/linux/kernel/v2.4/LATEST-IS-2.4.37.11
  92. ^ Willy Tarreau (2010-12-18). "Linux 2.4.37.11". linux-kernel mailing list. https://lkml.org/lkml/2010/12/18/73. 
  93. ^ Adrian Bunk (2008-10-11). "Linux 2.6.27 will be a longtime supported kernel". linux-kernel mailing list. http://marc.info/?l=linux-kernel&m=122375909403298. 
  94. ^ a b c d e f "The Linux Kernel Archives". Kernel.org. http://kernel.org/. Retrieved 2010-10-30. 
  95. ^ "Linux 2 6 27 - Linux Kernel Newbies". Kernelnewbies.org. http://kernelnewbies.org/Linux_2_6_27. Retrieved 2010-10-30. 
  96. ^ Greg Kroah-Hartman (2010-01-18). "Stable kernel tree status, January 18, 2010". linux-kernel mailing list. http://lkml.indiana.edu/hypermail/linux/kernel/1001.2/00858.html. 
  97. ^ "Linux 2 6 32 - Linux Kernel Newbies". Kernelnewbies.org. http://kernelnewbies.org/Linux_2_6_32. Retrieved 2010-10-30. 
  98. ^ Greg KH <greg@kroah.com> (2010-01-18). "Linux-Kernel Archive: Stable kernel tree status, January 18, 2010". Lkml.indiana.edu. http://lkml.indiana.edu/hypermail/linux/kernel/1001.2/00858.html. Retrieved 2010-10-30. 
  99. ^ "Linux 2.6.32.47". gmane.org. http://article.gmane.org/gmane.linux.kernel/1212299. Retrieved 2010-11-08. 
  100. ^ gitweb linux-stable.git summary
  101. ^ See the Linux MAINTAINERS file.
  102. ^ Linux Kernel Mailing List (2005-06-17). "Linux 2.6.12". http://marc.info/?l=git-commits-head&m=111904216911731. 
  103. ^ Linux Kernel Archives - Volume 1 (Riley Williams)
  104. ^ Linus Torvalds (2011-05-29). "Linux 3.0-rc1". https://lkml.org/lkml/2011/5/29/204. Retrieved 2011-08-16. 
  105. ^ Jeremy Offline (2001-10-13). "Kernel Release Numbering Redux". KernelTrap. http://kerneltrap.org/Linux/Kernel_Release_Numbering_Redux. Retrieved 2010-10-30. 
  106. ^ "Linus Torvalds: RFD: Kernel release numbering". LKML. http://lkml.org/lkml/2005/3/2/247. Retrieved 2010-10-30. 
  107. ^ Linus Torvalds (2011-05-29). "Linux 3.0-rc1". https://lkml.org/lkml/2011/5/29/204. Retrieved 2011-08-16. 

External links


Wikimedia Foundation. 2010.

Игры ⚽ Поможем решить контрольную работу

Look at other dictionaries:

  • Linux (Kernel) — Bildschirmfoto …   Deutsch Wikipedia

  • Linux-Kernel — Linux (Kernel) Entwickler Linus Torvalds u. v. m. Sprache(n) …   Deutsch Wikipedia

  • Linux Kernel — Linux (Kernel) Entwickler Linus Torvalds u. v. m. Sprache(n) …   Deutsch Wikipedia

  • Linux kernel mailing list — The Linux kernel mailing list (LKML) is the main electronic mailing list for Linux kernel development [http://www.kernel traffic.org/kernel traffic/index.html Kernel Traffic] ] [cite journal last =Gallivan first =Michael J. date =2001 12 29 title …   Wikipedia

  • Linux Kernel Developers Summit — The Linux Kernel Developers Summit is an annual gathering of the top Linux kernel developers. Attendance to the summit is by invitation only, and the conference was first held in San Jose in March, 2001. [cite journal | first=Michelle |last=Dilio …   Wikipedia

  • Linux kernel portability and supported architectures — Originally written for Intel s i386 processor, very early in its history, the Linux Kernel was re coded for easy portability. It had been re written once for the Motorola 68K; the prospect of tedious re writes for each possible architecture… …   Wikipedia

  • Linux kernel oops — An oops is a deviation from correct behavior of the Linux kernel which produces a certain error log. The better known kernel panic condition results from many kinds of oops, but others may allow continued operation with compromised reliability.… …   Wikipedia

  • Linux Kernel Library — The Linux Kernel Library is a project started by Octavian Purdila at University POLITEHNICA of Bucharest s IXIA sponsored laboratories, IXLABS [http://cs.pub.ro/ ixlabs] .The project s goal is to use the Linux kernel as a linkable library, so… …   Wikipedia

  • Linux Kernel API — The Linux Kernel API is an application programming interface providing a uniform method for device drivers and other low level software written for the Linux kernel to access system resources and services. External links *… …   Wikipedia

  • Linux Kernel — …   Википедия

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”