forked from illumos/illumos-docbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (77 loc) · 3.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<html>
<head>
<title>illumos books</title>
<style type="text/css">
p {
text-align: justify;
}
body {
font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}
h2 {
line-height: 1.5;
}
p {
line-height: 1.5;
font-size: 1.25rem;
}
</style>
</head>
<body>
<center>
<table width="600em"><tr><td>
<h1>illumos books</h1>
<h2><a href="./dev/">illumos Developer's Guide</a></h2>
<p>
This guide covers the basic workflow for developing illumos and then dives into
specific detail on everything from the layout of the gate to several HOWTOs.
Whether this is your first time working with illumos or you remember back when
the code in the gate all referred to something called SunOS, this guide will
help you in enhancing and fixing illumos.
</p>
<h2><a href="./dtrace/">Dynamic Tracing Guide</a></h2>
<p>
DTrace is a comprehensive dynamic tracing framework for the illumos Operating
System. DTrace provides a powerful infrastructure to permit administrators,
developers, and service personnel to concisely answer arbitrary questions about
the behavior of the operating system and user programs. The illumos Dynamic
Tracing Guide describes how to use DTrace to observe, debug, and tune system
behavior. This book also includes a complete reference for bundled DTrace
observability tools and the D programming language.
</p>
<h2><a href="./mdb/">Modular Debugger Guide</a></h2>
<p>
The Modular Debugger (MDB) is a highly extensible, general purpose debugging
tool for the illumos Operating System. The Modular Debugger Guide describes
how to use MDB to debug complex software systems, with a particular emphasis on
the facilities available for debugging the illumos kernel and associated device
drivers and modules. It also includes a complete reference for and discussion
of the MDB language syntax, debugger features, and MDB Module Programming API.
</p>
<h2><a href="./wdd/">Writing Device Drivers</a></h2>
<p>
Writing Device Drivers provides information on developing drivers for
character-oriented devices, block-oriented devices, network devices, SCSI
target and HBA devices, and USB devices for the illumos Operating System
(illumos). This book discusses how to develop multithreaded reentrant device
drivers for all architectures that conform to the illumos DDI/DKI (Device
Driver Interface, Driver-Kernel Interface). A common driver programming
approach is described that enables drivers to be written without concern for
platform-specific issues such as endianness and data ordering.
</p>
<p>
Additional topics include hardening illumos drivers; power management; driver
autoconfiguration; programmed I/O; Direct Memory Access (DMA); device context
management; compilation, installation, and testing drivers; debugging drivers;
and porting illumos drivers to a 64-bit environment.
</p>
<h2><a href="./lgrps/">Memory and Thread Placement Optimization Developer's Guide</a></h2>
<p>
The Memory and Thread Placement Optimization Developer's Guide provides
information on locality groups and the technologies that are available to
optimize the use of computing resources in the illumos operating system.
</p>
</td></tr></table>
</center>
</body>
</html>