2 |
- |
1 |
.TL
|
|
|
2 |
Preface to the Second (1995) Edition
|
|
|
3 |
.PP
|
|
|
4 |
Plan 9 was born in the same lab where Unix began.
|
|
|
5 |
Old Unix hands will recognize the cultural heritage in this manual,
|
|
|
6 |
where venerable Unix commands live on,
|
|
|
7 |
described in the classic Unix style. Underneath, though, lies
|
|
|
8 |
a new kind of system, organized around communication and
|
|
|
9 |
naming rather than files and processes.
|
|
|
10 |
.PP
|
|
|
11 |
In Plan 9, distributed computing is a central premise,
|
|
|
12 |
not an evolutionary add-on. The system relies on a
|
|
|
13 |
uniform protocol to refer to and communicate
|
|
|
14 |
with objects, whether they be data or processes, and whether or
|
|
|
15 |
not they live on the same machine or even similar machines.
|
|
|
16 |
A single paradigm (writing to named places) unifies
|
|
|
17 |
all kinds of control and interprocess signaling.
|
|
|
18 |
.PP
|
|
|
19 |
Name spaces can be built arbitrarily. In particular all
|
|
|
20 |
programs available to a given user are customarily united
|
|
|
21 |
in a single logical directory.
|
|
|
22 |
Temporary files and
|
|
|
23 |
untrusted activities can be confined in isolated spaces.
|
|
|
24 |
When a portable machine connects to the
|
|
|
25 |
central, archival file system, the machine's local
|
|
|
26 |
name space is joined smoothly to that of the archival file system.
|
|
|
27 |
The architecture affords other unusual abilities, including:
|
|
|
28 |
.IP
|
|
|
29 |
Objects in name spaces imported from other machines (even from
|
|
|
30 |
foreign systems such as MS-DOS) are transparently accessible.
|
|
|
31 |
.IP
|
|
|
32 |
Windows appear in name spaces on a par with files and processes.
|
|
|
33 |
.IP
|
|
|
34 |
A historical file system allows one to navigate
|
|
|
35 |
the archival file system in time as well as in space;
|
|
|
36 |
backup files are always at hand.
|
|
|
37 |
.IP
|
|
|
38 |
A debugger can handle simultaneously active processes
|
|
|
39 |
on disparate kinds of hardware.
|
|
|
40 |
.PP
|
|
|
41 |
The character set of Plan 9 is Unicode, which
|
|
|
42 |
covers most of the world's major scripts.
|
|
|
43 |
The system has its own programming languages:
|
|
|
44 |
a dialect of C with simple inheritance, a simplified shell,
|
|
|
45 |
and a CSP-like concurrent language, Alef.
|
|
|
46 |
An ANSI-POSIX emulator (APE) admits unreconstructed Unix code.
|
|
|
47 |
.PP
|
|
|
48 |
Plan 9 is the work of many people.
|
|
|
49 |
The protocol was begun by Ken Thompson; naming
|
|
|
50 |
was integrated by Rob Pike and networking by Dave Presotto.
|
|
|
51 |
Phil Winterbottom simplified the management of name spaces
|
|
|
52 |
and re-engineered the system.
|
|
|
53 |
They were joined by Tom Killian, Jim McKie, and Howard Trickey in
|
|
|
54 |
bringing the system up on various machines and making
|
|
|
55 |
device drivers.
|
|
|
56 |
Thompson made the C compiler;
|
|
|
57 |
Pike, window systems;
|
|
|
58 |
Tom Duff, the shell and raster graphics;
|
|
|
59 |
Winterbottom, Alef;
|
|
|
60 |
Trickey, Duff, and Andrew Hume, APE.
|
|
|
61 |
Bob Flandrena ported a myriad of
|
|
|
62 |
programs to Plan 9.
|
|
|
63 |
Other contributors include
|
|
|
64 |
Alan Berenbaum,
|
|
|
65 |
Lorinda Cherry,
|
|
|
66 |
Bill Cheswick,
|
|
|
67 |
Sean Dorward,
|
|
|
68 |
David Gay,
|
|
|
69 |
Paul Glick,
|
|
|
70 |
Eric Grosse,
|
|
|
71 |
John Hobby,
|
|
|
72 |
Gerard Holzmann,
|
|
|
73 |
Brian Kernighan,
|
|
|
74 |
Bart Locanthi,
|
|
|
75 |
Doug McIlroy,
|
|
|
76 |
Judy Paone,
|
|
|
77 |
Sean Quinlan,
|
|
|
78 |
Bob Restrick,
|
|
|
79 |
Dennis Ritchie,
|
|
|
80 |
Bjarne Stroustrup,
|
|
|
81 |
and
|
|
|
82 |
Cliff Young.
|
|
|
83 |
.PP
|
|
|
84 |
Plan 9 is made available as is, without formal support, but
|
|
|
85 |
substantial comments or contributions may be communicated to
|
|
|
86 |
the authors.
|
|
|
87 |
.sp
|
|
|
88 |
.in 4i
|
|
|
89 |
Doug McIlroy
|
|
|
90 |
.br
|
|
|
91 |
March, 1995
|