mnttab(0) CLIX mnttab(0)
SYNOPSIS
#include <mnttab.h>
NAME
mnttab - Mounted file system table
DESCRIPTION
The file /etc/mnttab contains an entry for each device mounted by the
mount command. Each entry is a structure in <mnttab.h> defined as
follows:
struct mnttab {
char mt_dev[32];
char mt_filsys[32];
short mt_ro_flg;
time_t mt_time;
char mt_fstyp[16];
char mt_mntopts[64];
};
Each entry is 150 bytes in length. The members of the structure are as
follows:
mt_dev The null-padded name of the place where the special file is
mounted.
mt_filsys The null-padded root name of the mounted special file.
mt_ro_flg The mounted special file's read/write permissions.
mt_time The date on which the special file was mounted.
mt_fstyp The null-padded name of file system type.
mt_mntopts The null-padded string of mount options. The mount options
are only used in the case of a Network File System.
FILES
/usr/include/mnttab.h
RELATED INFORMATION
Commands: mount(8), setmnt(8)
2/94 - Intergraph Corporation 1