1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9">
<TITLE>Accessing local and remote file systems: Purpose</TITLE>
<LINK HREF="access-2.html" REL=next>
<LINK HREF="access.html#toc1" REL=contents>
</HEAD>
<BODY>
<A HREF="access-2.html">Next</A>
Previous
<A HREF="access.html#toc1">Contents</A>
<HR>
<H2><A NAME="s1">1. Purpose</A></H2>
<P><EM>Linux</EM> manages all filesystems as a single large tree. This is
unlike <EM>DOS</EM>, which manages all hard drives and network
volumes as a set of independent units (C: D: E:).
<P>The first partition accessed by <EM>Linux</EM> is called the <EM>root</EM>.
The top-level directory is called <CODE>/</CODE>. The other
partitions (and network volumes) may be installed anywhere
in the filesystem tree.
<P>For example, you can set up your <EM>Linux</EM> system like this:
<P>
<UL>
<LI>/D</LI>
<LI>/E</LI>
<LI>/servers/server1/vol1</LI>
<LI>/servers/server1/vol2</LI>
<LI>/servers/server2/apps</LI>
<LI>/servers/server2/util</LI>
</UL>
<P>These directories are called <EM>"mount points"</EM>. They are
initially empty. <EM>Linux</EM> will logically install the
different partitions and volumes right there.
<P>All this means is that you have to tell Linux which partitions/volumes
go where.
<P>
<HR>
<A HREF="access-2.html">Next</A>
Previous
<A HREF="access.html#toc1">Contents</A>
</BODY>
</HTML>
|