Linux_FoundationLinux_Foundation
LFCS · Question #698
LFCS Question #698: Real Exam Question with Answer & Explanation
The correct answer is C: tune2fs -i 200 /dev/sda1. To change the maximum time interval (in days) between filesystem checks for an ext3 filesystem, use the tune2fs command with the -i option.
Submitted by anna_se· Apr 18, 2026Storage Management
Question
Which of the following commands changes the number of days before the ext3 filesystem on /dev/sda1 has to run through a full filesystem check while booting?
Options
- Atune2fs -d 200 /dev/sda1
- Btune2fs -c 200 /dev/sda1
- Ctune2fs -i 200 /dev/sda1
- Dtune2fs -n 200 /dev/sda1
- Etune2fs --days 200 /dev/sda1
Explanation
To change the maximum time interval (in days) between filesystem checks for an ext3 filesystem, use the tune2fs command with the -i option.
Common mistakes.
- A. There is no
-doption intune2fsto set the check interval in days;-dtypically relates to directory hash algorithms. - B.
tune2fs -c 200 /dev/sda1sets the maximum mount count between two filesystem checks, not the time interval in days. - D. There is no
-noption intune2fsthat serves the purpose of setting a check interval in days;-nis sometimes used to suppress certain actions or enable no-op mode. - E.
--daysis not a valid or recognized option fortune2fsto set the check interval; the correct option for this functionality is-i.
Concept tested. Ext3 filesystem parameter tuning
Reference. https://man7.org/linux/man-pages/man8/tune2fs.8.html
Topics
#tune2fs#filesystem checks#ext3#maintenance
Community Discussion
No community discussion yet for this question.