summaryrefslogtreecommitdiff
path: root/Hurd/TheGnuHurd.mdwn
diff options
context:
space:
mode:
authorguest <guest>2002-05-11 01:27:00 +0000
committerguest <guest>2002-05-11 01:27:00 +0000
commitfcf3ec81a270de3b8423f46b317442897356a970 (patch)
treea1cb65bb83b74f5250c43a88aab61f4075d65d2d /Hurd/TheGnuHurd.mdwn
parent3d746591b3d0ca21560e75ca149be2d057d7f23d (diff)
none
Diffstat (limited to 'Hurd/TheGnuHurd.mdwn')
-rw-r--r--Hurd/TheGnuHurd.mdwn48
1 files changed, 48 insertions, 0 deletions
diff --git a/Hurd/TheGnuHurd.mdwn b/Hurd/TheGnuHurd.mdwn
new file mode 100644
index 00000000..48eba561
--- /dev/null
+++ b/Hurd/TheGnuHurd.mdwn
@@ -0,0 +1,48 @@
+![hurd_sm_mf.png](%PUBURL%/hurd_sm_mf.png)
+
+# <a name="Table_of_Contents"> Table of Contents </a>
+
+%TOC%
+
+# <a name="Introduction_to_the_Hurd"> Introduction to the Hurd </a>
+
+The GNU Hurd is the GNU project's replacement for the Unix kernel. The Hurd is a collection of servers that run on the Mach microkernel to implement file systems, network protocols, file access control, and other features that are implemented by the Unix kernel or similar kernels (such as Linux).
+
+Currently, the Hurd runs on IA32 machines. The Hurd should, and probably will, be ported to other hardware architectures or other microkernels in the future.
+
+# <a name="Advantages_of_the_Hurd"> Advantages of the Hurd </a>
+
+The Hurd is not the most advanced kernel known to the planet (yet), but it does have a number of enticing features:
+
+<dl>
+ <dt> it's free software</dt>
+ <dd> Anybody can use, modify, and redistribute it under the terms of the <a href="http://www.gnu.org/copyleft/gpl.html" target="_top">GNU General Public License (GPL)</a>. </dd>
+ <dt> it's compatible</dt>
+ <dd> The Hurd provides a familiar programming and user environment. For all intents and purposes, the Hurd is a modern Unix-like kernel. The Hurd uses the <a href="http://www.gnu.org/software/libc/libc.html" target="_top">GNU C Library</a>, whose development closely tracks standards such as ANSI/ISO, BSD, POSIX, Single Unix, SVID, and X/Open. </dd>
+ <dt> it's built to survive</dt>
+ <dd> Unlike other popular kernel software, the Hurd has an object-oriented structure that allows it to evolve without compromising its design. This structure will help the Hurd undergo major redesign and modifications without having to be entirely rewritten. </dd>
+ <dt> it's scalable</dt>
+ <dd> The Hurd implementation is aggressively multithreaded so that it runs efficiently on both single processors and symmetric multiprocessors. The Hurd interfaces are designed to allow transparent network clusters (collectives), although this feature has not yet been implemented. </dd>
+ <dt> it's extensible</dt>
+ <dd> The Hurd is an attractive platform for learning how to become a kernel hacker or for implementing new ideas in kernel technology. Every part of the system is designed to be modified and extended. </dd>
+ <dt> it's stable</dt>
+ <dd> It is possible to develop and test new Hurd kernel components without rebooting the machine (not even accidentally). Running your own kernel components doesn't interfere with other users, and so no special system privileges are required. The mechanism for kernel extensions is secure by design: it is impossible to impose your changes upon other users unless they authorize them or you are the system administrator. </dd>
+ <dt> it exists</dt>
+ <dd> The Hurd is real software that works Right Now. It is not a research project or a proposal. You don't have to wait at all before you can start using and developing it. </dd>
+</dl>
+
+# <a name="What_the_Hurd_means"> What the Hurd means </a>
+
+According to Thomas Bushnell, BSG, the primary architect of the Hurd: \`Hurd' stands for \`Hird of Unix-Replacing Daemons'. And, then, \`Hird' stands for \`Hurd of Interfaces Representing Depth'. We have here, to my knowledge, the first software to be named by a pair of mutually recursive acronyms.
+
+# <a name="Status_of_the_project"> Status of the project </a>
+
+The Hurd, together with the GNU Mach microkernel, the GNU C Library and the other GNU programs, provides a rather complete and usable operating system today. It is not ready for production use, as there are still many bugs and missing features. However, it should be a good base for further development and non-critical application usage.
+
+GNU/Hurd is completely self-contained (you can compile all parts of the Hurd system from GNU/Hurd itself). You can run several GNU/Hurd systems in parallel, and debug even critical servers in another GNU/Hurd with gdb. You can run the X window system, applications that use it, and advanced server applications like the Apache webserver.
+
+On the negative side, the support for character devices (like sound cards) and other hardware is mostly missing. Although the POSIX interface is provided, some additional interfaces like POSIX threads, shared memories or semaphores are still under development.
+
+All this applies to the current development version, and not to the last release (0.2). We encourage everybody who is interested to try out the latest development version, and send feedback to the Hurd developers.
+
+-- [[Main/TWikiGuest]] - 11 May 2002