From 67e041103dfd0e181baace2a8dac304d86894218 Mon Sep 17 00:00:00 2001 From: rbuj Date: Wed, 26 Sep 2018 13:44:50 +0200 Subject: Virtual filesystem in Unix-like operating systems improve enumeration of inode metadata --- mate-user-guide/C/goscaja.xml | 5 +++-- 1 file 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. Directories and File Systems - Linux and Unix file systems are organized in a hierarchical, tree-like structure. The highest level of the file system is the / or root directory. 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. + 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 / or root directory. 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. For example, /home/jebediah/cheeses.odt shows the correct full path to the cheeses.odt file that exists in the jebediah directory which is under the home directory, which in turn, is under the root (/) directory. - Underneath the root (/) 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 (/) directory: + Underneath the root (/) directory, there is a set of important directories, or symbolic links to directories: @@ -1142,6 +1142,7 @@ files and folders. + More detailed information on the UNIX-like filesystem hierarchy is available at Filesystem Hierarchy Standard 3.0 http://refspecs.linuxfoundation.org/fhs.shtml. -- cgit v1.2.1