Examine the list of requirements for an XFS file system:
1) Its label must be /xfs1.
2) It must mount automatically during system startup.
3) The user data must be stored on /dev/sdh1.
4) The journal data must be stored on /dev/sddl.
5) The journal must be 4GB in size.
6) It must contain a real-time section.
7) Its block size must be 4096 bytes.
You execute the command:
# mkfs -t xfs -L /xfs1 -I logdev=/dev/sdd1 -d size=4g /dev/sdh1
Which requirements do you meet?
A.
1,3,4, 7
B.
1,2, 3,4, 7
C.
1,3,4
D.
1,3,4, 5, 7
E.
1,3, 4, 5,6,7
F.
1,2, 3, 4, 5,6, 7
100% D
A
To set the journal’s size, the command would have to be:
‘-l logdev=/dev/sdd1,size=4G’
A