Difference between revisions of "Multics"

From Computer History Wiki
Jump to: navigation, search
m (Technical aspects: typo)
(Add current OS rev, video link)
Line 4: Line 4:
 
| caption = H6180 Multics at MIT  
 
| caption = H6180 Multics at MIT  
 
| creator = MIT, with assistance from GE and Bell Labs
 
| creator = MIT, with assistance from GE and Bell Labs
<!-- | current version = v6 -->
+
| current version = MR 12.6f
 
| year introduced = December, 1967 (first boot); July, 1969 (experimental use)
 
| year introduced = December, 1967 (first boot); July, 1969 (experimental use)
 
| year discontinued = June, 1985 (discontinuation decision); October, 2000 (last system shut down)
 
| year discontinued = June, 1985 (discontinuation decision); October, 2000 (last system shut down)
Line 57: Line 57:
 
* [https://sourceforge.net/projects/dps8m/ DPS-8/M emulator]
 
* [https://sourceforge.net/projects/dps8m/ DPS-8/M emulator]
 
* [http://sourceforge.net/projects/h6180/ H6180 emulator (abandoned)]
 
* [http://sourceforge.net/projects/h6180/ H6180 emulator (abandoned)]
 +
* [https://www.youtube.com/watch?v=jni7wk7bjxA Multics booting] - A video of a H6180 CPU front panel hooked up to a SIMH H6180 emulation booting Multics
  
 
[[Category:Operating systems]]
 
[[Category:Operating systems]]

Revision as of 01:40, 6 October 2017


Multics
MITMultics.jpg
H6180 Multics at MIT
Type: Information utility
Creator: MIT, with assistance from GE and Bell Labs
Architecture: GE-645 initially, various Honeywell 6000 models later
This Version: MR 12.6f
Date Released: December, 1967 (first boot); July, 1969 (experimental use)
Date Discontinued: June, 1985 (discontinuation decision); October, 2000 (last system shut down)


Multics (Multiplexed Information and Computing Service) was an early time-sharing operating system for which has influenced every operating system created since; especially via Unix (the name of which is a play on 'Multics'), which was created by Bell Labs personnel who had worked on Multics, after Bell Labs pulled out of the Multics project.

Multics was intended as an information utility; i.e. a service to which those who wanted information processing would connect, much as people connect to the electric grid for power.

This dictated a number of Multics' features, including the modular structure of the hardware (with multiple CPUs and main memory banks, fully interconnected, and with the ability to take individual units out of service for maintenance, or to simply add additional units as demand increased over time); extremely robust security (so that individual users in a facility open to all comers would be protected from each other), etc.

Technical aspects

In addition to the modular hardware, and robust security, Multics had a number of other major technical features, some commonplace now, but major advances when it was first designed (in 1967). They include:

The single-level store architecture of Multics was particularly significant: it discarded the clear distinction between files (called segments in Multics) and process memory. The memory of a process consisted solely of segments that were mapped into its address space. To read or write to them, the process simply used normal instructions; the operating system took care of making sure that all the modifications were saved to secondary storage (disk).

In modern UNIX terminology, it was as if every file were 'mmap()'ed; however, in Multics there was no concept of process memory, separate from the memory used to hold mapped-in files: all memory in the system was part of some segment, which appeared in the file system; this included the temporary scratch memory of the process, such as its kernel stack, etc.

Hardware

Multics ran only on special hardware, which provided hardware support for its single-level store architecture.

It initially ran on the GE 645, a modified version of the GE 635. After GE was bought by Honeywell, a number of models of the Honeywell 6000 series systems were produced to run Multics on.

Multics today

Multics is dead. There are no systems running it today (the last one was shut down in 2000).

There is however now a working SIMH-based emulator for the Multics DPS-8/M hardware, and with most of the source code still extant, it is now possible to experience the Multics computing environment.

Reviving Multics?

Porting Multics to alternative hardware would be a worse-than-Herculean task: the design is not well-suited for porting. It used specialized hardware built especially for it, which had many features which do not have exact analogues on any other platform today. In addition, the word length of the machine (18-bit half-words) is explicitly included in many variable declarations in every source module.

Even if that could be overcome, Multics was written in PL/I. There are no PL/I compilers available other than commercial ones aimed at large enterprise systems, and which aren't getting any cheaper. The lack of a free Unixland PL/I compiler inhibits any porting task.

External links