..
In systems that refer to the Linux world (or, more correctly, in unix-like) data storage devices are detected by the operating system when connected to the computer, but their file systems are not "integrated" into the automatically "global file system".
This process of "engagement" is by the mount command which connects the device's filesystem to the filesystem overall system by inserting it inside the 'directory tree (in any Linux system, a drive is represented as if it were a shared folder).
The inverse operation, which releases a mounted filesystem, you say you run through the disassembly and umount.
By way of comparison, regarding the Windows world, the mount operation is hidden by the operating system. This, in fact, and runs at startup, automatically, every time a new device is connected (consider, for example in the case of USB sticks).
On Linux systems, the mount operation is performed automatically at startup if the root directory (/) and, usually, also the insertion of a removable device. In some circumstances, however, is certainly useful to be able to do this by using manual controls.
The mount command has two basic parameters:
Mount is launched with the following basic syntax:
mount <device_da_montare> <percorso_destinazione>If you want to use to explicitly specify the filesystem using the-t
mount [-t <filesystem>] <device_da_montare> <percorso_destinazione>The valid file for your system are listed in proc / filesystems. Usually this statement will be enough to see them:
cat / proc / filesystemsThe device LOOP
# Mount-o loop image.iso / mnt / diskForce option
<device_da_montare> <percorso_destinazione> mount-o forceRemoving a device
umount deviceYou can also remove a device as a parameter specifying the directory to umount when the device is mounted:
umount directory_mountpointView a list of mounted devices

| |
Linux (Course)
Complete guide to open-source system. From 49 €. |
| |
PHP (Course)
Full course for creating dynamic Web sites. From 49 €. |
| |
Ruby and Ruby on Rails (Course)
Create software and Web applications with Ruby and RoR. From 39 €. |