JSFiddle - React, Tailwind, and code Playground
by lakshmipathi
HTML
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<style>
body {
font-family: 'Roboto', Helvetica, sans-serif;
font-size: 17px;
color: #666;
font-weight: 400;
}
</style>
<body>
On Linux, UNIX, and similar operating systems, file systems on different partitions and removable devices (CDs, DVDs, or USB flash drives for example) can be attached to a certain point (the <i>mount point</i>) in the directory tree, and then detached again. To attach or detach a file system, use the <code>mount</code> or <code>umount</code> command respectively. This chapter describes the basic use of these commands, as well as some advanced topics, such as moving a mount point or creating shared subtrees.
<h3>Listing Currently Mounted File Systems</h3>
To display all currently attached file systems, run the <code>mount</code> command with no additional arguments:<br>
<pre><kbd>mount</kbd></pre><br>
This command displays the list of known mount points. Each line provides important information about the device name, the file system type, the directory in which it is mounted, and relevant mount options in the following form:<br>
<b><i>device on directory type type (options)</i></b><br>
The <code>findmnt</code> utility, which allows users to list mounted file systems in a tree-like form, is also available from Red Hat Enterprise Linux 6.1. To display all currently attached file systems, run the <code>findmnt</code> command with no additional arguments:
<br>
<pre><kbd>findmnt</kbd></pre>
<h3>Specifying the File System Type</h3>
By default, the output of the <code>mount</code> command includes various virtual file systems such as <code>sysfs</code> and <code>tmpfs</code>. To display only the devices with a certain file system type, supply the <code>-t</code> option on the command line:<br>
<pre><kbd>mount -t</kbd>...