範例:
# /etc/fstab (Ubuntu 16.04)
/dev/xvdb /home ext4 defaults,nofail 0 0
UUID=050e1234-39e6-4072-a03e-ae0bf90ba13a /home ext4 defaults,nofail 0 0
# /etc/fstab (Ubuntu 14.04)
/dev/xvdb /home ext4 defaults,nobootwait 0 0
nobootwait: 預防錯誤及失敗 (nobootwait is no longer a valid option in Ubuntu 16.04)
例行性檢查
編輯完fstab後可以umount所有裝置後,做mount -a
確認是否正確。
dmesg | tail
指令檢查錯誤訊息。
格式化指令 - mkfs
mkfs -t ext4 /dev/device_name
or
mkfs.ext4 /dev/device_name
擴充硬碟容量 - resize2fs
Ex. AWS EBS增加容量,以Ubuntu Resize為例:
e2fsck -f /dev/sdb
resize2fs /dev/sdb
流程:unmount > check & fix > resize > mount
Thanks, great article.