参考: [1]https://geek-university.com/linux/etc-fstab-file/ [2]https://linoxide.com/understanding-each-entry-of-linux-fstab-etcfstab-file/
Fstab is afilesystemtable used by the kernel during boot time to mount the file system. To put it in simple terms, you will create one or more partitions on your hard drive and you will make an entry for each partition in fstab which will be read by the kernel during boot time and ...
you will seethisinthe file and you need to add yournewentryunderthisline.brief explanationofthe above format:1.file_system=your device id.usethis:/dev/sdax(you should check itwithsudo fdisk-l)it may be/dev/sdbx or/dev/sdcxifyou have more than one disks connected.2.mount_point=where yo...
To mount all file systems in/etc/fstab, run: sudo mount -a Remember that the mount point must already exist, otherwise the entry will not mount on the filesystem. To create a new mount point, use root privileges to create the mount point. Here is the generalization and an example: ...