Found 0 result in total
Content is empty
If you don't find the content you expect, please try another search term
Last updated:2020-06-09 20:00:56
The /etc/fstab file contains information about static file systems and defines how the storage devices and partitions are integrated to the whole system. To execute automatic mounting at startup, define mount points of file systems, the corresponding mounting volumes (or hard disk drives), and additional information in this file.
The following is an example of the file:
/etc/fstab
/#<file system> <dir> <type> <options> <dump> <pass> tmpfs
/tmp tmpfs nodev,nosuid 0 0
/dev/vdb / ext4 defaults,noatime 0 1
/dev/vdc /home ext4 defaults,noatime 0 2
Typically, cancel automatic mounting of the /etc/fstab file in the following cases:
Open the /etc/fstab file.
vim /etc/fstab
If VIM is not installed, use the following command first:
yum -y install vim
wq
Pure Mode