Changes between Initial Version and Version 1 of FAQ


Ignore:
Timestamp:
2009-12-29T11:30:25Z (14 years ago)
Author:
Jiri Svoboda
Comment:

FAQ

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v1 v1  
     1= Frequently Asked Questions =
     2
     3'''Q:''' '''What is HelenOS?'''[[BR]]
     4'''A:''' HelenOS is an open-source microkernel-based operating system. It runs on several different CPU architectures (IA-32, x86-64, SPARC V9, IA-64, PowerPC, ARM, MIPS). HelenOS prides in portability, modularity, clean design and coding style.
     5
     6'''Q:''' '''What is SPARTAN?'''[[BR]]
     7'''A:''' SPARTAN was a closed-source operating system written by Jakub Jermář. Later it was open-sourced and adopted as the kernel of HelenOS operating system. Now we either call it just ''the kernel'' or ''SPARTAN''. The SPARTAN kernel gives HelenOS a very solid and well-developed base to build on. It supports multi-tasking, virtual memory and symmetric multi-processing. It also implements the HelenOS IPC, upon which HelenOS userspace services are built.
     8
     9'''Q:''' '''What is HelenOS used for?'''[[BR]]
     10'''A:''' Some people fiddle with HelenOS simply as a hobby. HelenOS is also used as a platform for school assignments for the Operating Systems course at the [http://www.mff.cuni.cz/ Faculty of Mathematics and Physics], Charles University, Prague, as well as for the students' bachelor and master theses.
     11
     12At this point we don't consider HelenOS usable for something different than development and research, but we're getting ''very'' close to the point where it will be.
     13
     14'''Q:''' '''What license is HelenOS released under?'''[[BR]]
     15'''A:''' All original HelenOS code is covered by a BSD-like license. Some specific third-party components are covered by the GPLv2.
     16
     17'''Q:''' '''Is it based on Linux? Is it UNIX-like?'''[[BR]]
     18'''A:''' HelenOS is based on original code, from the ground up. It is based on the original SPARTAN micro-kernel and is ''not'' meant to be POSIX-compliant or UNIX-like at all. Just as an example, HelenOS does not support {{{fork()}}}.
     19
     20'''Q:''' '''What does it do, from an end-user's perspective?'''[[BR]]
     21'''A:''' We have a command line which allows you to manipulate files, run applications and mount file systems from disks and disk images. You can play Tetris or edit text files. HelenOS supports multi-national text throughout thanks to using UCS (i.e. Unicode).
     22
     23'''Q:''' '''What do you aim for with HelenOS?'''[[BR]]
     24'''A:''' Mainly two things. One is to create a fully usable operating system. (I.e. a system that could be used for at least some everyday task such as router, server, PDA or desktop). The other is to have fun.
     25
     26'''Q:''' '''How is HelenOS development organized?'''[[BR]]
     27'''A:''' HelenOS development is community-driven. The primary communication medium for developers is our mailing list. Since most developers are currently based in Prague (or vicinity), we hold developer meetings in Prague once every month. Minutes are usually published on the mailing list.
     28
     29'''Q:''' '''Where is HelenOS source code kept?'''[[BR]]
     30'''A:''' HelenOS source code is managed with [http://bazaar.canonical.com/en/ Bazaar VCS]. We have a central repository which is considered as the most current code base. Several developers also have their private development branches which are publicly viewable.
     31
     32'''Q:''' '''Why don't you work on ''insert your favorite OS project'' instead?'''[[BR]]
     33'''A:''' While HelenOS currently has some gaps in user-space functionality (such as system tools and applications), from many points of view we consider it more advanced than any comparable project. Microkernel is just a label and there are as many ways to write a microkernel system as there are many ways to write an operating system. HelenOS pursues many interesting ideas not found in other projects. HelenOS is portable, clean and modular. And last, but not least, writing HelenOS is fun {{{^_^}}}.