Changes

1,806 bytes added ,  15:49, 12 February 2019
no edit summary
Line 25: Line 25:  
     </tr>
 
     </tr>
 
     <tr>
 
     <tr>
       <td>File System</td>
+
       <td>Filesystem</td>
       <td>The name of the Linux file system. In Linux systems <b>/dev</b> is the directory of device files. </td>
+
       <td>Name of the Linux filesystem. For better clarity, lets take a closer look at the filesystem name from the example above:
 +
            <ul>
 +
                <li><b>/dev</b> - the directory of device files. Everything in the Linux filesystem is either a file or a directory; /dev is the location of device files. Every device is represented by a file in the /dev directory</li>
 +
                <li><b>sd</b> - identifies block devices<span class="asterisk">*</span> (capable of carrying data)</li>
 +
                <li><b>a</b> - the letter immediately after sd signifies the order in which the device was first found (a, b, c, ...)</li>
 +
                <li><b>1</b> - signifies the partition on the device</li>
 +
            </ul>So the full string <b>/dev/sda1</b> denotes the first partition of the first block device<br><span class="asterisk">*</span> SD cards will be identified as MultiMediaCard (MMC) devices and the identifier will begin with the <b>mmcblk</b> string instead of sd
 +
        </td>
 
     </tr>
 
     </tr>
 
     <tr>
 
     <tr>
 
       <td>Mount Point</td>
 
       <td>Mount Point</td>
       <td>Directory available for mounting additional file system</td>
+
       <td>A mount point is a directory in the currently accessible filesystem on which an additional filesystem is mounted (i.e., logically attached). The <b>/mnt</b> directory and its subdirectories are intended for use as the temporary mount points for mounting storage devices. The mount point becomes the root directory of the newly added filesystem, and that filesystem becomes accessible from that directory</td>
 
     </tr>
 
     </tr>
 
     <tr>
 
     <tr>
 
     <td>Available</td>
 
     <td>Available</td>
         <td>Total memory available in the mounted system</td>
+
         <td>Amount of available memory in the mounted drive. This column also displays the total capacity of the drive</td>
 
     </tr>
 
     </tr>
 
     <tr>
 
     <tr>
 
     <td>Used</td>
 
     <td>Used</td>
         <td>The amount of free memory in the mounted system</td>
+
         <td>Amount of used memory in the mounted drive</td>
 
     </tr>
 
     </tr>
 
     <tr>
 
     <tr>
 
     <td>Safely Remove Disk</td>
 
     <td>Safely Remove Disk</td>
         <td></td>
+
         <td>Unmounts the drive so that it becomes safe to disconnect from the router</td>
 
     </tr>
 
     </tr>
 
</table>
 
</table>
 +
 +
====SSH commands====
 +
----
 +
Devices can be mounted or unmounted manually by using SSH commands.
 +
----
 +
The <b>mount</b> command can attach a filesystem to the file tree. The basic syntax for the command is:
 +
 +
mount -t type device dir
 +
 +
Where:
 +
<ul>
 +
    <li><b>-t</b> - the filesystem type. If this value is omitted, the command will try to determine the type automatically</li>
 +
    <li><b>device</b> - </li>
 +
    <li><b>dir</b> - </li>
 +
</ul>
    
===Samba===
 
===Samba===
 
----
 
----
The '''Samba''' functionality allows network sharing for specified directories.
+
The '''Samba''' functionality allows network sharing for specified directories.  
    
[[Image:Services network shares samba.PNG]]
 
[[Image:Services network shares samba.PNG]]

Navigation menu