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.)
You might also like to view...
What is i printed in the following code?
``` public class Test { public static void main(String[] args) { int j = 0; int i = j++ + j * 5; System.out.println("What is i? " + i); } } ``` a. 0 b. 1 c. 5 d. 6
A network within an organization that uses Internet technologies is known as ________
A) a superhighway B) an intranet C) a webnet D) an inter Internet
Which of the following is NOT true in regard to Excel Online?
A) Excel Online supports viewing and interacting with data in existing worksheets. B) Changes made in Excel Online are automatically saved while you work on it. C) Excel Online only supports one editor working in a workbook at one time. D) Excel Online supports editing of values and formulas, and inserting of tables, hyperlinks, and charts.
Though an invitee can propose a new meeting time, only the ____ can change or delete the meeting.
A. originator B. attendee C. navigator D. scheduler