fstab文件的作用和格式

1. fstab文件的作用

文件/etc/fstab存放的是系统中的文件系统信息。当正确的设置了该文件,则可以通过"mount /directoryname"命令来加载一个文件系统,每种文件系统都对应一个独立的行,每行中的字段都有空格或tab键分开。同时fsck、mount、umount的等命令都利用该文件。
The fstab (or file systems table) file is a system configuration file commonly found at /etc/fstab on Unix and Unix-like computer systems. In Linux it is part of the util-linux package. The fstab file typically lists all available disk partitions and other types of file systems and data sources that are not necessarily disk-based, and indicates how they are to be initialized or otherwise integrated into the larger file system structure.
The fstab file is read by the mount command, which happens automatically at boot time to determine the overall file system structure, and thereafter when a user executes the mount command to modify that structure. It is the duty of the system administrator to properly create and maintain the fstab file.
While fstab is still used for basic system configuration, for other uses it has been superseded by automatic mounting mechanisms.
The file has other names on some versions of Unix; for example, it is found at /etc/vfstab on Solaris systems.
The fstab file is read by programs that work with disk partitions and other file systems and is not automatically maintained. Instead it is written by the system administrator or sometimes by an operating system installation program.

2. fstab文件格式

下面是/etc/fstab文件的一个示例行:

fs_spec    fs_file    fs_type     fs_options fs_dump fs_pass 
/dev/hda1     /         ext2       defaults     1      1 

各列含义:

  1. fs_spec - 该字段定义希望加载的文件系统所在的设备或远程文件系统,对于一般的本地块设备情况来说:IDE设备一般描述为/dev/hdaXN,X是IDE设备通道(a, b, or c),N代表分区号;SCSI设备一描述为/dev/sdaXN。对于NFS(Network File System),格式一般为:, 例如:knuth.aeb.nl:/。对于procfs(proc filesystem),使用proc来定义。
  2. fs_file - 该字段描述希望的文件系统加载的目录点,对于swap设备,该字段为none;对于加载目录名包含空格的情况,用40来表示空格。
    fs_type - 定义了该设备上的文件系统,一般常见的文件类型为ext2 (Linux设备的常用文件类型)、vfat(Windows系统的fat32格式)、NTFS、iso9600等。
  3. fs_options - 指定加载该设备的文件系统是需要使用的特定参数选项,多个参数是由逗号分隔开来。对于大多数系统使用"defaults"就可以满足需要。
    其他常见的选项包括:
  • ro 以只读模式加载该文件系统
  • sync 不对该设备的写操作进行缓冲处理,这可以防止在非正常关机时情况下破坏文件系统,但是却降低了计算机速度
  • user 允许普通用户加载该文件系统
  • quota 强制在该文件系统上进行磁盘定额限制
  • noauto 不再使用mount -a命令(例如系统启动时)加载该文件系统
  1. fs_dump - 该选项被"dump"命令使用来检查一个文件系统应该以多快频率进行转储,若不需要转储就设置该字段为0
  2. fs_pass - 该字段被fsck命令用来决定在启动时需要被扫描的文件系统的顺序,根文件系统"/"对应该字段的值应该为1,其他文件系统应该为2。若该文件系统无需在启动时扫描则设置该字段为0

3.示例文件

    # /etc/fstab
    /dev/hda9 swap swap defaults 0 0
    /dev/hda1 / ext2 defaults 1 1
    /dev/hda5 /home ext2 defaults 1 1
    /dev/hda6 /usr ext2 defaults 1 1
    /dev/hda7 /usr/local ext2 defaults 1 1
    /dev/hda8 /var ext2 defaults 1 1
    /dev/hdb /cdrom iso9660 noauto,user 0 0
    none /proc proc defaults 0 0
    none /dev/pts devpts gid=5,mode=620 0 0

4. 参考资料

  • Wikipedia: https://en.wikipedia.org/wiki/Fstab
  • Ubuntu Help: http://wiki.ubuntu.org.cn/UbuntuHelp:Fstab

你可能感兴趣的:(fstab文件的作用和格式)