Penguin

Differences between current version and predecessor to the previous major change of Mount.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 3 Last edited on Monday, May 15, 2006 12:46:49 pm by CraigBox
Older page: version 1 Last edited on Saturday, August 16, 2003 5:31:16 pm by CraigBox Revert
@@ -1,6 +1,10 @@
-Make a FileSystem available for access. 
+To make a FileSystem available for access. Done using mount(8) and undone using umount(8)
  
-Linux does this by associating the file system with a directory ( the " MountPoint") within a currently mounted FileSystem. The "root" file system is mounted on the root  
- directory, " /" early in the boot sequence. mount(8) is also the command that does this; umount(8) breaks the association
+On Unix systems this is done by associating the FileSystem being mounted with a the MountPoint, ie an actual directory in an already mounted FileSystem. The "root" file system is mounted on the root directory, __ /__, early in the boot sequence. 
  
 Apparently derived from the physical sense of "mount" meaning "attach", as in "head-mounted display", or "set up", as in "AlwaysMountaScratchMonkey". 
+  
+See also FileSystemHierarchy.  
+  
+-----  
+CategoryStorage