My personal inferno-os repository

RISCi_ATOM 886e736bff First pull from upstream 12/17/16 7 rokov pred
DragonFly 886e736bff First pull from upstream 12/17/16 7 rokov pred
FreeBSD 886e736bff First pull from upstream 12/17/16 7 rokov pred
Inferno 886e736bff First pull from upstream 12/17/16 7 rokov pred
Irix 886e736bff First pull from upstream 12/17/16 7 rokov pred
Linux 886e736bff First pull from upstream 12/17/16 7 rokov pred
MacOSX 886e736bff First pull from upstream 12/17/16 7 rokov pred
NetBSD 886e736bff First pull from upstream 12/17/16 7 rokov pred
Nt 886e736bff First pull from upstream 12/17/16 7 rokov pred
OpenBSD 886e736bff First pull from upstream 12/17/16 7 rokov pred
Plan9 886e736bff First pull from upstream 12/17/16 7 rokov pred
Solaris 886e736bff First pull from upstream 12/17/16 7 rokov pred
acme 886e736bff First pull from upstream 12/17/16 7 rokov pred
appl 886e736bff First pull from upstream 12/17/16 7 rokov pred
dis 886e736bff First pull from upstream 12/17/16 7 rokov pred
doc 886e736bff First pull from upstream 12/17/16 7 rokov pred
emu 886e736bff First pull from upstream 12/17/16 7 rokov pred
fonts 886e736bff First pull from upstream 12/17/16 7 rokov pred
icons 886e736bff First pull from upstream 12/17/16 7 rokov pred
include 886e736bff First pull from upstream 12/17/16 7 rokov pred
keydb 886e736bff First pull from upstream 12/17/16 7 rokov pred
lib 886e736bff First pull from upstream 12/17/16 7 rokov pred
lib9 886e736bff First pull from upstream 12/17/16 7 rokov pred
libbio 886e736bff First pull from upstream 12/17/16 7 rokov pred
libdraw 886e736bff First pull from upstream 12/17/16 7 rokov pred
libdynld 886e736bff First pull from upstream 12/17/16 7 rokov pred
libfreetype 886e736bff First pull from upstream 12/17/16 7 rokov pred
libinterp 886e736bff First pull from upstream 12/17/16 7 rokov pred
libkern 886e736bff First pull from upstream 12/17/16 7 rokov pred
libkeyring 886e736bff First pull from upstream 12/17/16 7 rokov pred
liblogfs 886e736bff First pull from upstream 12/17/16 7 rokov pred
libmath 886e736bff First pull from upstream 12/17/16 7 rokov pred
libmemdraw 886e736bff First pull from upstream 12/17/16 7 rokov pred
libmemlayer 886e736bff First pull from upstream 12/17/16 7 rokov pred
libmp 886e736bff First pull from upstream 12/17/16 7 rokov pred
libnandfs 886e736bff First pull from upstream 12/17/16 7 rokov pred
libprefab 886e736bff First pull from upstream 12/17/16 7 rokov pred
libsec 886e736bff First pull from upstream 12/17/16 7 rokov pred
libtk 886e736bff First pull from upstream 12/17/16 7 rokov pred
limbo 886e736bff First pull from upstream 12/17/16 7 rokov pred
locale 886e736bff First pull from upstream 12/17/16 7 rokov pred
man 886e736bff First pull from upstream 12/17/16 7 rokov pred
mkfiles 886e736bff First pull from upstream 12/17/16 7 rokov pred
module 886e736bff First pull from upstream 12/17/16 7 rokov pred
opt 886e736bff First pull from upstream 12/17/16 7 rokov pred
os 886e736bff First pull from upstream 12/17/16 7 rokov pred
services 886e736bff First pull from upstream 12/17/16 7 rokov pred
tools 886e736bff First pull from upstream 12/17/16 7 rokov pred
usr 886e736bff First pull from upstream 12/17/16 7 rokov pred
utils 886e736bff First pull from upstream 12/17/16 7 rokov pred
CHANGES 886e736bff First pull from upstream 12/17/16 7 rokov pred
INSTALL 886e736bff First pull from upstream 12/17/16 7 rokov pred
NOTICE 886e736bff First pull from upstream 12/17/16 7 rokov pred
README.md 886e736bff First pull from upstream 12/17/16 7 rokov pred
makemk.sh 886e736bff First pull from upstream 12/17/16 7 rokov pred
mkconfig 886e736bff First pull from upstream 12/17/16 7 rokov pred
mkfile 886e736bff First pull from upstream 12/17/16 7 rokov pred

README.md

Inferno® is a distributed operating system, originally developed at Bell Labs, but now developed and maintained by Vita Nuova® as Free Software. Applications written in Inferno's concurrent programming language, Limbo, are compiled to its portable virtual machine code (Dis), to run anywhere on a network in the portable environment that Inferno provides. Unusually, that environment looks and acts like a complete operating system.

The use of a high-level language and virtual machine is sensible but mundane. The interesting thing is the system's representation of services and resources. They are represented in a file-like name hiearchy. Programs access them using only the file operations open, read/write, and close. The 'files' may of course represent stored data, but may also be devices, network and protocol interfaces, dynamic data sources, and services. The approach unifies and provides basic naming, structuring, and access control mechanisms for all system resources. A single file-service protocol (the same as Plan 9's 9P) makes all those resources available for import or export throughout the network in a uniform way, independent of location. An application simply attaches the resources it needs to its own per-process name hierarchy ('name space').

The system can be used to build portable client and server applications. It makes it straightforward to build lean applications that share all manner of resources over a network, without the cruft of much of the 'Grid' software one sees.

Inferno can run 'native' on various ARM, PowerPC, SPARC and x86 platforms but also 'hosted', under an existing operating system (including FreeBSD, Irix, Linux, MacOS X, Plan 9, and Solaris), again on various processor types.

This Bitbucket project includes source for the basic applications, Inferno itself (hosted and native), all supporting software, including the native compiler suite, essential executables and supporting files.