Changes between Version 9 and Version 10 of UsersGuide/DisksFileSystems


Ignore:
Timestamp:
2012-03-19T12:39:01Z (12 years ago)
Author:
Jiri Svoboda
Comment:

OS directory structure

Legend:

Unmodified
Added
Removed
Modified
  • UsersGuide/DisksFileSystems

    v9 v10  
    11= Disks and File systems =
    22
     3== File system types ==
    34HelenOS currently supports the following file systems:
    45
     
    1112|| [wiki:Fs/Cdfs CDFS]     || `cdfs`          || no             || no                  || Testing ||
    1213|| [wiki:Fs/Mfs MFS]       || `mfs`           || no             || yes                 || Testing ||
     14
     15== Directory structure ==
     16
     17The file system of a running HelenOS system is roughly laid out as follows:
     18
     19|| /app  || end-user applications (see the [wiki:CommandReference Command Reference]) ||
     20|| /cfg  || system-wide configuration ||
     21|| /data || application data (e.g. the web root served by websrv) ||
     22|| /drv  || device drivers ||
     23|| /inc  || header files ||
     24|| /lib  || libraries ||
     25|| /loc  || location service nodes (rough analogy of /dev in UNIX) ||
     26|| /src  || source files ||
     27|| /srv  || server applications (services, e.g. console, networking - see the [wiki:CommandReference Command Reference]) ||
     28|| /tmp  || temporary files ||
     29
     30This layout is not fixed in any way and may change in the future.