1、簡介
開機 自動 挂載 很有用,特别是 很多 開啟自啟 服務 依賴于 某些 資料檔案;本文 描述 編輯 /etc/fstab 實作 開機自啟
2、/etc/fstab
# cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
#
# / was on /dev/sda3 during installation
UUID=4dfee257-e6a1-41fb-b16a-1d93a7ebe0be / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda1 during installation
UUID=9008bfed-4aa5-44d9-9a2d-58d4ffd0fcaf /boot ext4 defaults 0 2
# swap was on /dev/sda5 during installation
UUID=9255b841-8bde-4878-afe4-ad7e118f132b none swap sw 0 0
UUID=c87a3ad3-d319-4621-bf08-14013281bbe7 /mnt/learn_linux ext4 defaults 0 0
3、内容詳解
#
# 要挂載的裝置或僞檔案系統 挂載點 檔案系統類型 挂載選項 轉儲頻率 自檢次序
3.1 裝置或僞檔案系統
裝置檔案、LABEL(LABEL="")、UUID(UUID="")
僞檔案系統名稱(proc, sysfs)
3.2 挂載點
指定的檔案夾
3.3 挂載選項
defaults
3.4 轉儲頻率
使用dump指令自動備份分區資料的頻率
0:不做備份
1:每天轉儲
2:每隔一天轉儲
3.5 自檢次序
0:不自檢
1:首先自檢
4、擴充(/etc/fstab和/etc/mtab的差別)
4.1 /etc/fstab檔案的作用
記錄了計算機上硬碟分區的相關資訊,啟動 Linux 的時候,檢查分區的 fsck 指令,和挂載分區的 mount 指令,都需要 fstab 中的資訊,來正确的檢查和挂載硬碟
4.2 /etc/mtab檔案的作用
每當 mount 挂載分區、umount 解除安裝分區,都會動态更新 mtab,mtab 總是保持着目前系統中已挂載的分區資訊