The command mkfs -t ext3 -T largefile /dev/hdb1 creates what size of inode?
A.
4 megabyte
B.
2 megabyte
C.
1 megabyte
D.
4 kilobyte
Explanation:
-T fs-type : Specify how the filesystem is going to be used, so that mke2fs can choose optimal filesystem parameters for that use. Some Filesystem type are:
news : One inode per 4kb block largerfile : one inode per megabyte largerfile4 : one inode per 4 megabytes
This is the number of inodes per MB, not the inode size. Inode size is a different parameter.