Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 566 Bytes

fstab.org

File metadata and controls

29 lines (21 loc) · 566 Bytes

fstab

Add drives to fstab

Get UUID of drive

sudo blkid

Append a line to the /etc/fstab

UUID={YOUR-UID}    {/path/to/mount/point}               {file-system-type}    defaults,errors=remount-ro 0       1

Add NFS mounts

Add nfs-common with apt

sudo apt install nfs-common

Append a line to the /etc/fstab like

10.10.0.10:/backups /var/backups  nfs      defaults    0       0

References

https://www.cyberciti.biz/faq/linux-finding-using-uuids-to-update-fstab/