Discuss how you can manually mount a file system.

What will be an ideal response?


You can use the mount command to manually mount a file system. The syntax is:
mount [-t file_system_type] [-o mount_options] device mount_point_directory
Using mount, you can override the default settings in /etc/fstab. For example, entering the following mounts the partition /dev/sda9 to the /space directory:
mount /dev/sda9 /space
You do not usually specify the file system type because it is recognized automatically using magic numbers in the superblock, or simply by trying different file system types. (See man mount for details.)

Computer Science & Information Technology

You might also like to view...

Arrays static method ________ fills an array with values produced by a generator function that receives an int and returns a value of type int, long or double.

a. parallelFill b. parallelFillAll c. generateAll d. parallelSetAll

Computer Science & Information Technology

In an 802.3 Ethernet frame, what is the maximum payload size?

What will be an ideal response?

Computer Science & Information Technology

To center a page horizontally, use the Margins tab in the ________ dialog box

A) Sheet Options B) Orientation C) Print Area D) Page Setup

Computer Science & Information Technology

____________________ involves trying to determine the amount of network bandwidth necessary to support an application or a set of applications.?

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology