Welcome Guest [Log In] [Register]
Welcome to Technology Chat Corner. We hope you enjoy your visit.


You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Plus, members will have all ads on the board removed. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Add Reply
1.4 Mounting and Unmounting File Systems
Topic Started: Jan 31 2010, 08:38 PM (18 Views)
Speedy
Member Avatar
Google Whore
[ *  *  *  *  *  * ]
1.4 Conducting Routing Mount and Unmount of File Systems


mount – This command is used to attach or mount a device to a mount point directory.

Umount – This command is used to detach or unmount a device from a mount point directory.

/etc/fstab
– This is a file used to specify the filesystems that are mounted automatically at boot time.

Mount Point – This is a directory in a file structure to which a device is mounted.


How does the mount command work?

A properly run mount command would look something like this:

mount -t auto /dev/fd0 /mnt/floppy

Here is what all this means:

mount – This is the command itself

-t – This is “Type” argument for the command. For this command, -t is used to specify the file-system of the device being mounted

auto – This is specifying that the command should automatically detect the file-system being mounted, however you can specify other system types in here such as ext3 or vfat.

/dev/fd0 – This is the device you will be mounting.

/mnt/floppy – This is the location you will be mounting the device to.
Posted Image

Sometimes I lie awake at night, and I ask, "Where have I gone wrong?"/ Then a voice says to me, "This is going to take more than one night."
- Charles M. Schulz


Software Reviews
Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Linux+ Exam · Next Topic »
Add Reply