Linux and Networking

Linux and Networking

3.7 Mounting units

A file system is a partition on your hard disk (which can be unique) which has a format,

and the format is the way to place the files.

When the system is loaded, it automatically also loads your filesystem, and works with your system of files.

Linux, automatically loads its Filesystem

When loading, it is called “mount”, at that time, just like other operating systems have done, you can start working with your filesystem

But Linux, unlike other systems, can also access different File Systems like a MSDOS partition, windows partition, etc…

What’s more, you can access your flash drive formatted in other systems, for example in a Mac.

 

How can you mount your pendrive…

 

mount pendrive
mount pendrive

Unmounting the drives is FUNDAMENTAL. If the drives are not unmounted and the system is not closed correctly, there is a risk of losing data.

 

To unmount the drives, just write:

umount /dev/[mounted device to unmount]

 

Examples:

umount /dev/sdb1

It will unmount partition 1 of flash drive B

umount -a

It will unmount ALL mounted drives.

 

The Demeter Project