Download Linux system

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Maemo wikipedia , lookup

OS-tan wikipedia , lookup

Library (computing) wikipedia , lookup

Unix time wikipedia , lookup

VS/9 wikipedia , lookup

Burroughs MCP wikipedia , lookup

Copland (operating system) wikipedia , lookup

RSTS/E wikipedia , lookup

Process management (computing) wikipedia , lookup

CP/M wikipedia , lookup

Distributed operating system wikipedia , lookup

Mobile operating system wikipedia , lookup

Plan 9 from Bell Labs wikipedia , lookup

Spring (operating system) wikipedia , lookup

Unix wikipedia , lookup

DNIX wikipedia , lookup

Linux kernel wikipedia , lookup

Berkeley Software Distribution wikipedia , lookup

Unix security wikipedia , lookup

Mandriva Linux wikipedia , lookup

Linux wikipedia , lookup

Caldera OpenLinux wikipedia , lookup

Linux adoption wikipedia , lookup

Smallfoot wikipedia , lookup

Security-focused operating system wikipedia , lookup

Transcript
Chapter 2: The Linux System
Part 1
Operating System Concepts Essentials – 8th Edition
Silberschatz, Galvin and Gagne ©2011
Chapter 2: The Linux System

Linux History

Design Principles

Kernel Modules

Process Management

Scheduling

Memory Management

File Systems

Input and Output

Interprocess Communication

Network Structure

Security
Operating System Concepts Essentials– 8th Edition
15.2
Silberschatz, Galvin and Gagne ©2011
Objectives

To explore the history of the UNIX operating system from which Linux is derived and the
principles which Linux is designed upon

To examine the Linux process model and illustrate how Linux schedules processes and
provides interprocess communication

To look at memory management in Linux

To explore how Linux implements file systems and manages I/O devices
Operating System Concepts Essentials– 8th Edition
15.3
Silberschatz, Galvin and Gagne ©2011
History
Operating System Concepts Essentials – 8th Edition
Silberschatz, Galvin and Gagne ©2011
History

Linux is a modern, free operating system based on UNIX standards

First developed as a small but self-contained kernel in 1991 by Linus Torvalds, with the
major design goal of UNIX compatibility

Its history has been one of collaboration by many users from all around the world,
corresponding almost exclusively over the Internet

It has been designed to run efficiently and reliably on common PC hardware, but also runs on
a variety of other platforms

The core Linux operating system kernel is entirely original, but it can run much existing free
UNIX software, resulting in an entire UNIX-compatible operating system free from proprietary
code
Operating System Concepts Essentials– 8th Edition
15.5
Silberschatz, Galvin and Gagne ©2011
History

The Linux kernel is an entirely original piece of software developed from scratch by the Linux
community.

The Linux system, as we know it today, includes a multitude of components, some written from
scratch, others borrowed from other development projects.

Linux distribution includes all the standard components of the Linux system, plus a set of
administrative tools to simplify the initial installation and subsequent upgrading of Linux and to
manage installation and removal of other packages on the system.

Many, varying Linux Distributions including the kernel, applications, and management tools.
Operating System Concepts Essentials– 8th Edition
15.6
Silberschatz, Galvin and Gagne ©2011
The Linux Kernel

Version 0.01 (May 1991) had no networking, ran only on 80386-compatible Intel processors and
on PC hardware, had extremely limited device-drive support, and supported only the Minix file
system

Linux 1.0 (March 1994) included these new features:
 Support for UNIX’s standard TCP/IP networking protocols
 BSD-compatible socket interface for networking programming
 Device-driver support for running IP over an Ethernet
 Enhanced file system
 Extra hardware support

Version 1.2 (March 1995) was the final PC-only Linux kernel.
Operating System Concepts Essentials– 8th Edition
15.7
Silberschatz, Galvin and Gagne ©2011
Linux 2.0



Released in June 1996, 2.0 added two major new capabilities:

Support for multiple architectures, including a fully 64-bit native Alpha port

Support for multiprocessor architectures
Other new features included:

Improved memory-management code

Improved TCP/IP performance

Standardized configuration interface
Available for Motorola 68000-series processors, Sun Sparc systems, and for PC and PowerMac
systems
Operating System Concepts Essentials– 8th Edition
15.8
Silberschatz, Galvin and Gagne ©2011
The Linux System

Linux uses many tools developed as part of Berkeley’s BSD operating system, ex: Free
Software Foundation's GNU project

The min system libraries were started by the GNU project, with improvements provided by
the Linux community

Linux networking-administration tools were derived from 4.3BSD code; recent BSD
derivatives such as Free BSD have borrowed code from Linux in return

The Linux system is maintained by a loose network of developers collaborating over the
Internet, with a small number of public sites acting as de facto standard repositories.
Operating System Concepts Essentials– 8th Edition
15.9
Silberschatz, Galvin and Gagne ©2011
Linux Distributions

Standard, precompiled sets of packages, or distributions, include the basic Linux system,
system installation and management utilities, and ready-to-install packages of common
UNIX tools

Early Linux distributions


Red Hat and Debian are popular distributions, the first comes from a commercial
Linux support company and the second from the free-software Linux community.
The RPM Package file format permits compatibility among the various Linux distributions
Operating System Concepts Essentials– 8th Edition
15.10
Silberschatz, Galvin and Gagne ©2011
Linux Licensing

The Linux kernel is distributed under the GNU General Public License (GPL), the terms of
which are set out by the Free Software Foundation

copyright rights in Linux code are still held by the code’s various authors.

Linux is free software, however, in the sense that people can copy it, modify it, use it in
any manner they want, and give away their own copies, without any restrictions.
Operating System Concepts Essentials– 8th Edition
15.11
Silberschatz, Galvin and Gagne ©2011
Design Principles
Operating System Concepts Essentials – 8th Edition
Silberschatz, Galvin and Gagne ©2011
Design Principles

Linux is a multiuser, multitasking system with a full set of UNIX-compatible tools

Its file system adheres to traditional UNIX semantics, and it fully implements the standard
UNIX networking model

Main design goals are speed, efficiency, and standardization

Linux is designed to be compliant with the relevant POSIX documents; at least two Linux
distributions have achieved official POSIX certification

The Linux programming interface adheres to the SVR4 UNIX semantics, rather than to
BSD behavior
Operating System Concepts Essentials– 8th Edition
15.13
Silberschatz, Galvin and Gagne ©2011
Components of a Linux System
Operating System Concepts Essentials– 8th Edition
15.14
Silberschatz, Galvin and Gagne ©2011
Components of a Linux System (Cont.)

The Linux system is composed of three main bodies of code, in line with most traditional UNIX
implementations:
1. Kernel. The kernel is responsible for maintaining all the important abstractions of the operating
system, including such things as virtual memory and processes.

Kernel code executes in kernel mode with full access to all the physical resources of the
computer

All kernel code and data structures are kept in the same single address space. Why?

This single address space contains not only the core scheduling and virtual memory
code but all kernel code, including all device drivers, file systems, and networking
code.
Operating System Concepts Essentials– 8th Edition
15.15
Silberschatz, Galvin and Gagne ©2011
Components of a Linux System (Cont.)
2. System libraries. The system libraries define a standard set of functions through which
applications can interact with the kernel.
3. System utilities. The system utilities are programs that perform individual, specialized
management tasks. Some system utilities may be invoked just once to initialize and configure
some aspect of the system; others—known as daemons in UNIX terminology—may run
permanently, handling such tasks as responding to incoming network connections, accepting
logon requests from terminals, and updating log files.
Operating System Concepts Essentials– 8th Edition
15.16
Silberschatz, Galvin and Gagne ©2011