fstabのヘルプ・マニュアル
日本語 英語
fstab --help
man fstab
FSTAB(5) Linux Programmer’s Manual FSTAB(5)
名前
fstab - ファイルシステムの静的な情報
書式
#include
説明
このファイル fstab には様々なファイルシステムに関する情報が記述されてい
る。 fstab ファイルはプログラムによって読みこまれるだけで書き込まれるこ
と はない。このファイルを適切に作り、保守するのはシステム管理者の責任で
ある。それぞれのファイルシステムは一行単位で記述され、各行のフィール ド
は TAB 文字もしくは空白 (spaces) で区切られる。 ’#’ で始まる行はコメン
トである。 fsck(8), mount(8), umount(8) などのプログラムは、 fstab ファ
イルを先頭から順に読み込んで処理するため、 fstab に記述されるレコード (
ファイルシステム) の順序は重要である。
最初のフィールド (fs_spec) は、マウントしたいブロックスペシャルデバイス
もしくはリモートファイルシステムを記述する。
通 常のマウントでは、これはマウントされるブロックスペシャルデバイスノー
ド (またはそれへのリンク) である。これは mknod(8) によって作成される 。
た とえば ‘/dev/cdrom’ や ‘/dev/sdb7’ といったものになる。 NFS マウント
の場合は : という書式になる。たとえば ‘knuth.aeb.nl:/’ な ど
である。 procfs の場合は ‘proc’ を使う。
デバイスを明示する代わりに、マウントされる (ext2 または xfs) ファイルシ
ステムを UUID とボリュームラベルで指定することもできる (e2label(8) また
は xfs_admin(8) を 参 照 の こ と) 。この場合は LABEL= または
UUID= のように書く。たとえば ‘LABEL=Boot’ や ‘UUID=3e6be9de-8139-
-11d1-9106-a43f08d823a6’ のようになる。こうするとシステムはより強固にな
る。 SCSI ディスクを追加・削除してディスクデバイスの名前が変わっても 、
ファイルシステムのボリュームラベルは変化しないからである。
2 番目のフィールド (fs_file) は、ファイルシステムのマウントポイントを記
述する。スワップパーティションの場合、このフィールドは ‘none’ と明記 す
る必要がある。マウントポイントに含まれている空白は、‘\040’ のようにエス
ケープできる。
3 番目のフィールド (fs_vfstype) は、ファイルシステムのタイプを記述す る
。 Linux では adfs, affs, autofs, coda, coherent, cramfs, devpts, efs,
ext2, ext3, hfs, hpfs, iso9660, jfs, minix, msdos, ncpfs, nfs, ntfs,
proc, qnx4, reiserfs, romfs, smbfs, sysv, tmpfs, udf, ufs, umsdos,
vfat, xenix, xfs, 更にそれ以外の多くのファイルシステムタイプをサポー ト
す る。詳細は mount(8) を参照すること。稼働中のカーネルが現在サポートし
ているファイルシステムについては、 /proc/filesystems を見よ。エン ト リ
swap はスワップに使われるファイルまたはパーティションを表す。 swapon(8)
を参照。エントリ ignore により、その行は無視される。これは現在使用さ れ
ていないディスクパーティションを表示するのに役立つ。
4 番目のフィールド (fs_mntops) は、 ファイルシステム毎のマウントオプシ
ョンを記述する。
これはカンマで区切られたオプションのリストである。少なくともマウント の
タ イプを書く必要がある。加えてファイルシステムのタイプに応じた適切なオ
プションが書かれていることが多い。 NFS 以外のファイルシステムで使用可能
なオプションについては、 mount(8) を参照のこと。 nfs 固有のオプションに
ついては nfs(5) を参照のこと。どのようなファイルシステムにも適用でき る
オプションは、 ‘‘noauto’’ ("mount -a" を実行したとき (ブート時など) に
マウントしない), ‘‘user’’ (ユーザにマウントを許可する), ‘‘owner’’ (デバ
イ スの所有者にマウントを許可する), ‘‘comment’’ (例えば、fstab 管理プロ
グラムで使用するため) である。 ‘‘owner’’ と ‘‘comment’’ は Linux 独自の
オプションである。詳細は mount(8) を参照のこと。
5 番目のフィールド (fs_freq) は、これらのファイルシステムを dump(8) コ
マンドがダンプする必要があるかを決定するために用いられる。 5 番目のフィ
ールドがなければ、 0 が戻り値となり、 dump はそのファイルシステムをダン
プする必要が無いとみなす。
6 番目のフィールド (fs_passno) は fsck(8) プログラムが用い、ブート時 に
フ ァイルシステムのチェックを実行する順序を決定するために参照される。ル
ートファイルシステムは fs_passno を 1 と明記する必要があり、その他の パ
ーティションは、 fs_passno を 2 とする必要がある。 1 つのドライブ中のフ
ァイルシステムは順番にチェックされる。しかし、異なるドライブのファイ ル
シ ステムはハードウェアの並列性を役立たせる為に同時にチェックされる。 6
番目のフィールドが存在しないか 0 である場合には 0 値が返り、 fsck は そ
のファイルシステムをチェックする必要がないとみなす。
fstab ファイルからレコードを読む正しい方法は、 getmntent(3) ルーチンを
用いることである。
ファイル
/etc/fstab
関連項目
getmntent(3), mount(8), swapon(8), fs(5) nfs(5)
履歴
この fstab ファイルフォーマットの原型は 4.0BSD で導入された。
Linux 2.2 15 June 1999 FSTAB(5)
FSTAB(5) Linux Programmer’s Manual FSTAB(5)
NAME
fstab - static information about the filesystems
SYNOPSIS
#include
DESCRIPTION
The file fstab contains descriptive information about the various file
systems. fstab is only read by programs, and not written; it is the
duty of the system administrator to properly create and maintain this
file. Each filesystem is described on a separate line; fields on each
line are separated by tabs or spaces. Lines starting with ’#’ are com-
ments. blank lines are ignored. The order of records in fstab is
important because fsck(8), mount(8), and umount(8) sequentially iterate
through fstab doing their thing.
The first field, (fs_spec), describes the block special device or
remote filesystem to be mounted.
For ordinary mounts it will hold (a link to) a block special device
node (as created by mknod(8)) for the device to be mounted, like
‘/dev/cdrom’ or ‘/dev/sdb7’. For NFS mounts one will have
:, e.g., ‘knuth.aeb.nl:/’. For procfs, use ‘proc’.
Instead of giving the device explicitly, one may indicate the (ext2 or
xfs) filesystem that is to be mounted by its UUID or volume label (cf.
e2label(8) or xfs_admin(8)), writing LABEL= or UUID=,
e.g., ‘LABEL=Boot’ or ‘UUID=3e6be9de-8139-11d1-9106-a43f08d823a6’.
This will make the system more robust: adding or removing a SCSI disk
changes the disk device name but not the filesystem volume label.
The second field, (fs_file), describes the mount point for the filesys-
tem. For swap partitions, this field should be specified as ‘none’. If
the name of the mount point contains spaces these can be escaped as
‘\040’.
The third field, (fs_vfstype), describes the type of the filesystem.
Linux supports lots of filesystem types, such as adfs, affs, autofs,
coda, coherent, cramfs, devpts, efs, ext2, ext3, hfs, hpfs, iso9660,
jfs, minix, msdos, ncpfs, nfs, ntfs, proc, qnx4, reiserfs, romfs,
smbfs, sysv, tmpfs, udf, ufs, umsdos, vfat, xenix, xfs, and possibly
others. For more details, see mount(8). For the filesystems currently
supported by the running kernel, see /proc/filesystems. An entry swap
denotes a file or partition to be used for swapping, cf. swapon(8). An
entry ignore causes the line to be ignored. This is useful to show
disk partitions which are currently unused. An entry none is useful
for bind or move mounts.
mount(8) and umount(8) support filesystem subtypes. The subtype is
defined by ’.subtype’ suffix. For example ’fuse.sshfs’. It’s recom-
mended to use subtype notation rather than add any prefix to the first
fstab field (for example ’sshfs#example.com’ is depreacated).
The fourth field, (fs_mntops), describes the mount options associated
with the filesystem.
It is formatted as a comma separated list of options. It contains at
least the type of mount plus any additional options appropriate to the
filesystem type. For documentation on the available options for non-
nfs file systems, see mount(8). For documentation on all nfs-specific
options have a look at nfs(5). Common for all types of file system are
the options ‘‘noauto’’ (do not mount when "mount -a" is given, e.g., at
boot time), ‘‘user’’ (allow a user to mount), and ‘‘owner’’ (allow
device owner to mount), and ‘‘comment’’ (e.g., for use by fstab-main-
taining programs). The ‘‘owner’’ and ‘‘comment’’ options are Linux-
specific. For more details, see mount(8).
The fifth field, (fs_freq), is used for these filesystems by the
dump(8) command to determine which filesystems need to be dumped. If
the fifth field is not present, a value of zero is returned and dump
will assume that the filesystem does not need to be dumped.
The sixth field, (fs_passno), is used by the fsck(8) program to deter-
mine the order in which filesystem checks are done at reboot time. The
root filesystem should be specified with a fs_passno of 1, and other
filesystems should have a fs_passno of 2. Filesystems within a drive
will be checked sequentially, but filesystems on different drives will
be checked at the same time to utilize parallelism available in the
hardware. If the sixth field is not present or zero, a value of zero
is returned and fsck will assume that the filesystem does not need to
be checked.
The proper way to read records from fstab is to use the routines getmn-
tent(3).
FILES
/etc/fstab
SEE ALSO
getmntent(3), mount(8), swapon(8), fs(5), nfs(5)
HISTORY
The ancestor of this fstab file format appeared in 4.0BSD.
AVAILABILITY
This man page is part of the util-linux-ng package and is available
from ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
Linux 2.2 15 June 1999 FSTAB(5)