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...

Polymorphism is implemented via:

a. Member functions. b. virtual functions and dynamic binding. c. inline functions. d. Non-virtual functions.

Computer Science & Information Technology

Case-Based Critical Thinking QuestionsCase 1Brenda has finished constructing her new database and populating it with data, and the time has come to begin to test out queries on her new database. She has asked you for some quick tips on the finer points of database queries. Brenda wants to find all of the following values in a given field: aft, ant, and apt but wants to exclude act and art in the query results. What wildcard phrase do you tell her to use?

A. A[dfp]t B. A[d-p]t C. A[!d-p]t D. A[!cnp]t

Computer Science & Information Technology