10 Bootstrap Component - Panels

This demo is an extraction from http://getbootstrap.com/components/. created by @juanmendezinfo

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>
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Fun with e2fsck and debugfs </title>
    <link href="css/bootstrap.min.css" rel="stylesheet">

<style>
body {
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 17px;
    color: #666;
    font-weight: 400;
}
</style>
  </head>


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,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...