Skip to content

Commit 67e0411

Browse files
rbujraveit65
authored andcommitted
Virtual filesystem in Unix-like operating systems
improve enumeration of inode metadata
1 parent ca99a5c commit 67e0411

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

‎mate-user-guide/C/goscaja.xml‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,11 +1063,11 @@ files and folders.</para>
10631063

10641064
<sect2 id="caja-directories-file-systems" status="complete">
10651065
<title>Directories and File Systems</title>
1066-
<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.
1066+
<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.
10671067
</para>
10681068
<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.
10691069
</para>
1070-
<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:
1070+
<para>Underneath the root (<filename>/</filename>) directory, there is a set of important directories, or symbolic links to directories:
10711071
</para>
10721072
<itemizedlist>
10731073
<listitem>
@@ -1142,6 +1142,7 @@ files and folders.</para>
11421142
</para>
11431143
</listitem>
11441144
</itemizedlist>
1145+
<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>
11451146
</sect2>
11461147

11471148
<sect2 id="goscaja-7">

0 commit comments

Comments
 (0)