Which of the following best describes the format of the /etc/fstab file?
A. mount point; device name; filesystem type; mount options; dump filesystem; fsck order
B. device name; mount point; filesystem type; mount options; dump filesystem; fsck order
C. mount point; filesystem type; device name; mount options; dump filesystem; fsck order
D. device name; mount point; mount options; filesystem type; dump filessystem; fsck order
E. device name; filesystem type; mount point; mount options; dump filesystem; fsck order
題解
「/etc/fstab」設定檔共有6個欄位,分別是:
- file system:裝置名稱(裝置檔案路徑、UUID或是LABEL)。
- mount point:掛載裝置的檔案路徑。
- type:裝置的檔案系統。
- options:檔案系統的參數。
- dump:是否用dump來進行備份。
- pass:掛載時是否使用fsck工具來檢查檔案系統。
所以答案是選項B。