<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: difference between filesystem and mountpoint in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260291#M52653</link>
    <description>&lt;!--!*#--&gt;Matti's explanation is utmost correct. I use the same explanation in my crusade against proper technical terminologies and jargons in my site.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Filesystems are data structure or format that exist on top of addressable block or raw or even file devices. Among the most well known filesystems are the ext family on Linux, ufs on BSD and Solaris, vxfs from Veritas/Symantec for all platforms. There are many others in various forms of development.&lt;BR /&gt;&lt;BR /&gt;Now in case you have heard of ZFS (w/c is stable and coming to Linux) and claim it to be a "filesystem" that needs a mount point -- he/she is half correct -- but I digress.&lt;BR /&gt;&lt;BR /&gt;Filesystems need to be mapped or mounted to a directory (also called a mount point). A mount point need not be a top level directory.&lt;BR /&gt;&lt;BR /&gt;Filesystems can be created and exist on top of:&lt;BR /&gt;1)  a whole simple disk&lt;BR /&gt;/dev/sdb on /apache/logs  type vxfs (rw)&lt;BR /&gt;&lt;BR /&gt;2)  a disk partition&lt;BR /&gt;/dev/sdc3 on /saplog   type ext4  (rw)&lt;BR /&gt;&lt;BR /&gt;3)  an LVM logical volume&lt;BR /&gt;/dev/mapper/sapvg01-logvol01 on  /saplog01  type vxfs  (rw)&lt;BR /&gt;&lt;BR /&gt;4)  a VxVM volume&lt;BR /&gt;/dev/rdsk/sapdg02/data01   on  /sapdata01   type ext3   (rw)&lt;BR /&gt;&lt;BR /&gt;5)  a multipathed disk&lt;BR /&gt;/dev/mapper/SAPDISK01   on   /sapdata   type vxfs  (rw)&lt;BR /&gt;&lt;BR /&gt;6)  a raid device&lt;BR /&gt;/dev/cciss/c0d1p1 on /apache type ext3 (rw)&lt;BR /&gt;&lt;BR /&gt;7)  a prorietary device say from EMC (Powerpath) or IBM (SVC)&lt;BR /&gt;... don;t have it..&lt;BR /&gt;&lt;BR /&gt;8)  a loopback file device&lt;BR /&gt;/data/file.dsk on /mnt/c type ext3 (rw,loop=/dev/loop2)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;So "mount point" and "filesystem" cannot be used interchangeably IMHO. The precise way of using and commnicating is:&lt;BR /&gt;&lt;BR /&gt;say you have:&lt;BR /&gt;&lt;BR /&gt;# df -k /apache/logs&lt;BR /&gt;&lt;BR /&gt;Filesystem            Size  Used Avail Use% Mounted on&lt;BR /&gt;/dev/mapper/vgapache-logs  1Tb .5Tb  .5Tb  50% /apache/logs&lt;BR /&gt;&lt;BR /&gt;# mount |grep logs&lt;BR /&gt;/dev/mapper/vgapache-logs on /apache/logs  type ext3 (rw)&lt;BR /&gt;&lt;BR /&gt;You would communicate it this way and it will impress your boss (assuming he is technical):&lt;BR /&gt;&lt;BR /&gt;The mount point /apache/logs is an ext3 filesystem that resides on a logical volume named logs that is carved out of an  LVM Volume Group vg-apache. It has 50% occupancy.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;</description>
    <pubDate>Wed, 17 Nov 2010 14:48:13 GMT</pubDate>
    <dc:creator>Zinky</dc:creator>
    <dc:date>2010-11-17T14:48:13Z</dc:date>
    <item>
      <title>difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260281#M52643</link>
      <description>HI All,&lt;BR /&gt;&lt;BR /&gt;Very silly question.&lt;BR /&gt;&lt;BR /&gt;What is the difference between filesystem and mountpoint, where do we exactly use the term called “Filesystem” and “Mountpoint”.&lt;BR /&gt;&lt;BR /&gt;* points will be shared at the end without fail.</description>
      <pubDate>Tue, 26 Oct 2010 13:44:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260281#M52643</guid>
      <dc:creator>bullz</dc:creator>
      <dc:date>2010-10-26T13:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260282#M52644</link>
      <description>In abstract sense, a filesystem is "something that has a capacity to hold files and directories". A filesystem might be contained in a disk partition (e.g. /dev/sda1), in a LVM logical volume (/dev/vg00/lvol1) or in a CDROM/DVD (/dev/scd0). &lt;BR /&gt;&lt;BR /&gt;The "root filesystem" is a bit special: it is mounted at the system's root directory (/), and it is usually mounted very early in the system's boot sequence. You usually cannot unmount the root filesystem: if you could do that for some reason, you could not do anything but a system halt/reboot after that.&lt;BR /&gt;&lt;BR /&gt;A mount point is the location where a filesystem's root directory is (or will be) attached to the system's directory hierarchy. The mount point of the root filesystem is always the root directory, /. &lt;BR /&gt;&lt;BR /&gt;Any directory in any filesystem can serve as a mount point for mounting another filesystem: no special preparation is required.&lt;BR /&gt;&lt;BR /&gt;The root directory of the "child" filesystem will overlap the directory of the "parent" filesystem that is used as a mount point. If the mount point directory on the "parent" filesystem contains files, those files will be inaccessible while the "child" filesystem is mounted. (Unless those files are hard-linked to some other location on the parent filesystem... but I digress.)&lt;BR /&gt;&lt;BR /&gt;Unix/Linux sysadmins often talk about filesystems and their mountpoints somewhat interchangeably: for example, "the /usr filesystem" is a shorthand for "the filesystem that is normally mounted at mount point /usr".&lt;BR /&gt;&lt;BR /&gt;Fundamental questions like this are interestingly tricky to answer: please ask for more explanations if I was unclear.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Tue, 26 Oct 2010 14:40:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260282#M52644</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2010-10-26T14:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260283#M52645</link>
      <description>Best explanation. +1&lt;BR /&gt;&lt;BR /&gt;So, can I come to a conclusion that, &lt;BR /&gt;&lt;BR /&gt;/dev/cciss/c0d0p3     3.0G  1.5G  1.4G  52% /usr&lt;BR /&gt;/dev/cciss/c0d1p1     133G  3.7G  122G   3% /data1&lt;BR /&gt;&lt;BR /&gt;/usr mountpoint is 52% used.&lt;BR /&gt;/data1 mountpoint is 3% used.&lt;BR /&gt;&lt;BR /&gt;Instead of referring it as filesystem?&lt;BR /&gt;&lt;BR /&gt;only i suld use "Filesystem" when the communication related with /dev/cciss/c0d0p3 (or) /dev/cciss/c0d1p1</description>
      <pubDate>Tue, 26 Oct 2010 16:20:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260283#M52645</guid>
      <dc:creator>bullz</dc:creator>
      <dc:date>2010-10-26T16:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260284#M52646</link>
      <description>&amp;gt;&amp;gt;So, can I come to a conclusion that,&lt;BR /&gt;&amp;gt;&amp;gt;/dev/cciss/c0d0p3 3.0G 1.5G 1.4G 52% /usr&lt;BR /&gt;&amp;gt;&amp;gt;/dev/cciss/c0d1p1 133G 3.7G 122G 3% /data1&lt;BR /&gt;&amp;gt;&amp;gt;/usr mountpoint is 52% used.&lt;BR /&gt;&amp;gt;&amp;gt;/data1 mountpoint is 3% used.&lt;BR /&gt;&amp;gt;&amp;gt;Instead of referring it as filesystem?&lt;BR /&gt;&lt;BR /&gt;The best way, in my opinion, to state this would be: The filesystem on disk /dev/cciss/codop3, which is mounted to /usr, is 52% utilized.&lt;BR /&gt;&lt;BR /&gt;It is the filesystem itself that contains the data.  The mountpoint could change but where ever you mount it, it would be 52% utilized.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;only i suld use "Filesystem" when the &lt;BR /&gt;&amp;gt;&amp;gt;communication related with /dev/cciss/c0d0p3 (or) /dev/cciss/c0d1p1&lt;BR /&gt;&lt;BR /&gt;Not necessarily.  Those are disk devices on which a filesystem has been created.  &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Oct 2010 17:43:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260284#M52646</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2010-10-26T17:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260285#M52647</link>
      <description>&lt;!--!*#--&gt;&amp;gt; /data1 mountpoint is 3% used.&lt;BR /&gt;&lt;BR /&gt;That would seem to be approximately backward.&lt;BR /&gt;&lt;BR /&gt;      ls -l /data1&lt;BR /&gt;      ls -ld /data1&lt;BR /&gt;      umount /data1&lt;BR /&gt;      ls -l /data1&lt;BR /&gt;      ls -ld /data1&lt;BR /&gt;&lt;BR /&gt;"/data1" is a mount point.  It's the point&lt;BR /&gt;(a directory in the "/" (root) file system)&lt;BR /&gt;where the file system on /dev/cciss/c0d1p1 is&lt;BR /&gt;normally mounted.&lt;BR /&gt;&lt;BR /&gt;If you do that "umount" command, then&lt;BR /&gt;remember to:&lt;BR /&gt;      mount /data1&lt;BR /&gt;&lt;BR /&gt;A file system is where the files are stored.&lt;BR /&gt;A file system can have a capacity, so it&lt;BR /&gt;might be, say, 3% full.&lt;BR /&gt;&lt;BR /&gt;A mount point is where a file system appears&lt;BR /&gt;in the great tree of file systems.  By&lt;BR /&gt;itself, it's a directory.  It has no&lt;BR /&gt;intrinsic capacity, so it can't get full.</description>
      <pubDate>Tue, 26 Oct 2010 18:16:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260285#M52647</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-10-26T18:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260286#M52648</link>
      <description>A file system is where the files are stored according to their formats compatible to structure such as in file sizes , inode manipulation, lv attidutes..&lt;BR /&gt;&lt;BR /&gt;A mount point is the created access directory that is compatible for this FS</description>
      <pubDate>Wed, 27 Oct 2010 11:14:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260286#M52648</guid>
      <dc:creator>Hakki Aydin Ucar</dc:creator>
      <dc:date>2010-10-27T11:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260287#M52649</link>
      <description>&amp;gt; The best way, in my opinion, to state this would be: The filesystem on disk /dev/cciss/codop3, which is mounted to /usr, is 52% utilized.&lt;BR /&gt;&lt;BR /&gt;Patrick is demonstrating the most complete and technically accurate form here.&lt;BR /&gt;&lt;BR /&gt;But in common sysadmin work, you typically think about the disk device &amp;lt;-&amp;gt; filesystem relations only when you're setting up the system or changing its disk configuration, or troubleshooting a disk problem. Otherwise, you usually won't need to think about it.&lt;BR /&gt;&lt;BR /&gt;On the other hand, the filesystem &amp;lt;-&amp;gt; mountpoint relation is much more important in everyday use, since it is used to define file locations in a way that is immediately usable for users and application configurations.&lt;BR /&gt;&lt;BR /&gt;Therefore, referring to filesystem by using the name of its mountpoint (e.g. "the /opt filesystem") is a very common and practical shorthand. &lt;BR /&gt;&lt;BR /&gt;The operation to identify a disk device when given the mount point of its filesystem (or vice versa) should be trivial for all Unix sysadmins: just type "mount" and read the list. Or on Linux, use "cat /proc/mounts".&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Wed, 27 Oct 2010 13:50:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260287#M52649</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2010-10-27T13:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260288#M52650</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;A file system sits on top of a mount point.&lt;BR /&gt;&lt;BR /&gt;Thats how I keep it straight. Mount point is just a path.&lt;BR /&gt;&lt;BR /&gt;file system resides elsewhere but is mounted on a mount point.&lt;BR /&gt;&lt;BR /&gt;Examples:&lt;BR /&gt;&lt;BR /&gt;I have a file system called mydata. It was allocated disk on a logical volume vg01/lvol1&lt;BR /&gt;&lt;BR /&gt;It is mounted /dev/vg01/lvol1 /mydata&lt;BR /&gt;&lt;BR /&gt;For some reason I don't like that&lt;BR /&gt;&lt;BR /&gt;umount /mydata&lt;BR /&gt;&lt;BR /&gt;mkdir /oradata&lt;BR /&gt;mount /dev/vg01/lvol1/oradata&lt;BR /&gt;&lt;BR /&gt;Same data, same file system really, new mount point.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 27 Oct 2010 15:57:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260288#M52650</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-10-27T15:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260289#M52651</link>
      <description>Thanx all for you kind help. please post if you have any other view.</description>
      <pubDate>Wed, 17 Nov 2010 13:51:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260289#M52651</guid>
      <dc:creator>bullz</dc:creator>
      <dc:date>2010-11-17T13:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260290#M52652</link>
      <description>&lt;!--!*#--&gt;&amp;gt; please post if you have any other view.&lt;BR /&gt;&lt;BR /&gt;Please post a question if something is not&lt;BR /&gt;yet clear.</description>
      <pubDate>Wed, 17 Nov 2010 14:26:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260290#M52652</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-11-17T14:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260291#M52653</link>
      <description>&lt;!--!*#--&gt;Matti's explanation is utmost correct. I use the same explanation in my crusade against proper technical terminologies and jargons in my site.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Filesystems are data structure or format that exist on top of addressable block or raw or even file devices. Among the most well known filesystems are the ext family on Linux, ufs on BSD and Solaris, vxfs from Veritas/Symantec for all platforms. There are many others in various forms of development.&lt;BR /&gt;&lt;BR /&gt;Now in case you have heard of ZFS (w/c is stable and coming to Linux) and claim it to be a "filesystem" that needs a mount point -- he/she is half correct -- but I digress.&lt;BR /&gt;&lt;BR /&gt;Filesystems need to be mapped or mounted to a directory (also called a mount point). A mount point need not be a top level directory.&lt;BR /&gt;&lt;BR /&gt;Filesystems can be created and exist on top of:&lt;BR /&gt;1)  a whole simple disk&lt;BR /&gt;/dev/sdb on /apache/logs  type vxfs (rw)&lt;BR /&gt;&lt;BR /&gt;2)  a disk partition&lt;BR /&gt;/dev/sdc3 on /saplog   type ext4  (rw)&lt;BR /&gt;&lt;BR /&gt;3)  an LVM logical volume&lt;BR /&gt;/dev/mapper/sapvg01-logvol01 on  /saplog01  type vxfs  (rw)&lt;BR /&gt;&lt;BR /&gt;4)  a VxVM volume&lt;BR /&gt;/dev/rdsk/sapdg02/data01   on  /sapdata01   type ext3   (rw)&lt;BR /&gt;&lt;BR /&gt;5)  a multipathed disk&lt;BR /&gt;/dev/mapper/SAPDISK01   on   /sapdata   type vxfs  (rw)&lt;BR /&gt;&lt;BR /&gt;6)  a raid device&lt;BR /&gt;/dev/cciss/c0d1p1 on /apache type ext3 (rw)&lt;BR /&gt;&lt;BR /&gt;7)  a prorietary device say from EMC (Powerpath) or IBM (SVC)&lt;BR /&gt;... don;t have it..&lt;BR /&gt;&lt;BR /&gt;8)  a loopback file device&lt;BR /&gt;/data/file.dsk on /mnt/c type ext3 (rw,loop=/dev/loop2)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;So "mount point" and "filesystem" cannot be used interchangeably IMHO. The precise way of using and commnicating is:&lt;BR /&gt;&lt;BR /&gt;say you have:&lt;BR /&gt;&lt;BR /&gt;# df -k /apache/logs&lt;BR /&gt;&lt;BR /&gt;Filesystem            Size  Used Avail Use% Mounted on&lt;BR /&gt;/dev/mapper/vgapache-logs  1Tb .5Tb  .5Tb  50% /apache/logs&lt;BR /&gt;&lt;BR /&gt;# mount |grep logs&lt;BR /&gt;/dev/mapper/vgapache-logs on /apache/logs  type ext3 (rw)&lt;BR /&gt;&lt;BR /&gt;You would communicate it this way and it will impress your boss (assuming he is technical):&lt;BR /&gt;&lt;BR /&gt;The mount point /apache/logs is an ext3 filesystem that resides on a logical volume named logs that is carved out of an  LVM Volume Group vg-apache. It has 50% occupancy.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Nov 2010 14:48:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260291#M52653</guid>
      <dc:creator>Zinky</dc:creator>
      <dc:date>2010-11-17T14:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260292#M52654</link>
      <description>@ Alzhy&lt;BR /&gt;Really itâ  s time to say wowâ ¦ &lt;BR /&gt;&lt;BR /&gt;@ Steven Schweda&lt;BR /&gt;Got so much info.&lt;BR /&gt;&lt;BR /&gt;Thanx all.</description>
      <pubDate>Fri, 19 Nov 2010 17:20:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260292#M52654</guid>
      <dc:creator>bullz</dc:creator>
      <dc:date>2010-11-19T17:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: difference between filesystem and mountpoint</title>
      <link>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260293#M52655</link>
      <description>Thanx</description>
      <pubDate>Fri, 19 Nov 2010 17:20:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/difference-between-filesystem-and-mountpoint/m-p/5260293#M52655</guid>
      <dc:creator>bullz</dc:creator>
      <dc:date>2010-11-19T17:20:57Z</dc:date>
    </item>
  </channel>
</rss>

