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?
A.
tune2fs -d 200 /dev/sda1
B.
tune2fs -c 200 /dev/sda1
C.
tune2fs -i 200 /dev/sda1
D.
tune2fs -n 200 /dev/sda1
E.
tune2fs --days 200 /dev/sda1
題解
「tune2fs」指令可以調整ext檔案系統的參數。
選項A,「tune2fs」指令沒有「-d」參數。
選項B,「-c」指令可以設定檔案系統在掛載多少次之後就會使用e2fsck工具檢查。
選項C,「-i」指令可以設定檔案系統檢查的時間間隔,預設時間單位是天。所以這個選項是正確答案。
選項D,「tune2fs」指令沒有「-n」參數。
選項E,「tune2fs」指令沒有「--days」參數。