summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2018-09-26 13:44:50 +0200
committerraveit65 <[email protected]>2018-09-27 21:21:13 +0200
commitac6c437e348a23d1120f671427898c11acb07f3d (patch)
treeab642051c5d3021dba896f211d320d8e9c8a9d32
parent38b4562f79c1314194b2c222a132c3bfd6826afe (diff)
downloadmate-user-guide-ac6c437e348a23d1120f671427898c11acb07f3d.tar.bz2
mate-user-guide-ac6c437e348a23d1120f671427898c11acb07f3d.tar.xz
Virtual filesystem in Unix-like operating systems
improve enumeration of inode metadata
-rw-r--r--mate-user-guide/C/goscaja.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/mate-user-guide/C/goscaja.xml b/mate-user-guide/C/goscaja.xml
index e1aa45f..66311ed 100644
--- a/mate-user-guide/C/goscaja.xml
+++ b/mate-user-guide/C/goscaja.xml
@@ -1063,11 +1063,11 @@ files and folders.</para>
<sect2 id="caja-directories-file-systems" status="complete">
<title>Directories and File Systems</title>
- <para>Linux and Unix file systems are organized in a hierarchical, tree-like structure. The highest level of the file system is the <filename>/</filename> or <emphasis>root directory</emphasis>. In the Unix and Linux design philosophy, everything is considered a file - including hard disks, partitions and removable media. This means that all files and directories (including other disks and partitions) exist under the root directory.
+ <para>In Linux and other Unix-like operating systems, the filesystem is organised in a hierarchical, tree-like structure. The highest level of the filesystem is the <filename>/</filename> or <emphasis>root directory</emphasis>. These operating systems create a virtual file system, in which a filesystem object, such as a file or a directory, is represented by an inode. Each inode stores information about its parent and children, as well as its own attributes, among others, the owner, the permissions, the last change, access or modification of the filesystem object.
</para>
<para>For example, <filename>/home/jebediah/cheeses.odt</filename> shows the correct full path to the <filename>cheeses.odt</filename> file that exists in the <filename>jebediah</filename> directory which is under the <filename>home</filename> directory, which in turn, is under the root (<filename>/</filename>) directory.
</para>
- <para>Underneath the root (<filename>/</filename>) directory, there is a set of important system directories that are commonly used across most Linux distributions. The following is a listing of common directories that are directly under the root (<filename>/</filename>) directory:
+ <para>Underneath the root (<filename>/</filename>) directory, there is a set of important directories, or symbolic links to directories:
</para>
<itemizedlist>
<listitem>
@@ -1142,6 +1142,7 @@ files and folders.</para>
</para>
</listitem>
</itemizedlist>
+ <note><para>More detailed information on the UNIX-like filesystem hierarchy is available at Filesystem Hierarchy Standard 3.0 <ulink url="http://refspecs.linuxfoundation.org/fhs.shtml">http://refspecs.linuxfoundation.org/fhs.shtml</ulink>.</para></note>
</sect2>
<sect2 id="goscaja-7">