Published at March 8, 2019 · 1 min read
/etc/fstab is a config file to store static information about file system. It’s a native place to add disks information you would like to mount automatically on each system start. It has a pretty simple format: [device] [mountpoint] [filesystem] [options] [dump] [fscheck pass count] I used such format for the years and it worked before: /dev/sdb1 /opt/media ext4 defaults 0 0 I don’t know how many people do the same. I think this is the most used way to mount partitions during the startup....