MINIX 3.3.0 发布,此版本现已提供下载,包括了非常重要的新特性:
系统基于一个极小的(12,700 行代码) 微型内核 微型内核处理中断和消息传递,并且是唯一在内核模式运行的代码 The rest of the operating system runs as a collection of isolated, protected, user-mode processes Each device driver is a separate user-mode process isolated by the MMU hardware If a driver crashes, the system automatically restarts it, with running applications not even noticing This means that MINIX 3.3.0 is self-healing Userland is largely compatible with NetBSD and runs thousands of NetBSD packages By combining an innovative self-healing research OS with NetBSD userland, we got the best of both worlds 提供 clang/LLVM 和 gcc 编译器,也支持 Python,Perl 等 MINIX 3.3.0 提供 x86 和 ARM Cortex A8 架构,使其适用嵌入式系统 Tools for cross compiling MINIX 3 for the ARM on Linux are provided Ports are available now for the BeagleBoard XM, BeagleBone white, and BeagleBone black Extensive documentation is available in the MINIX 3 wiki The code has been improved over MINIX 3.2.1 in hundreds of ways, leading to a cleaner and more reliable system More
ARM MINIX 3.3.0 运行的 Beagle 单片机:

更多更新内容请看这里
Minix的名称取自英语Mini UNIX,是一个迷你版本的类Unix操作系统(约300MB),其它类似的系统还有Idris,Coherent,和Uniflex等。这些类Unix操作系统都是重新发展的,并没有使用任何AT&T的程序码
Minix原来是荷兰阿姆斯特丹的Vrije大学计算机科学系的Andrew S. Tanenbaum教授所发展的一个类Unix操作系统。全部的程序码共约12,000行,并置于他的著作Operating Systems: Design and Implementation(ISBN 0-13-637331-3)的附录里作为范例。Minix的系统要求在当时来说非常简单,只要三片磁片就可以起动。
全套Minix除了起动的部份以汇编语言编写以外,其他大部份都是纯粹用C语言编写。分为:内核、内存管理及档案管理三部份。
Minix原始是设计给1980年代到1990年代的IBM PC和IBM PC/AT兼容电脑上执行。1.5版也有移植到已Motorola 68000系列CPU为基础的电脑上(如Atari ST,Amiga,和早期的Apple Macintosh)和以SPARC为基础的机器(如升阳sun公司的工作站)。2.0版则只有x86架构的版本。 |