Go forward to FSinfo static mounts.
Go backward to FSinfo host attributes.
Go up to FSinfo host definitions.
FSinfo filesystems
==================
The list of physically attached filesystems follows the machine
attributes. These should define all the filesystems available from this
machine, whether exported or not. In addition to the device name,
filesystems have several attributes, such as filesystem type, mount
options, and `fsck' pass number which are needed to generate `fstab'
entries.
filesystem : "fs" <DEVICE> "{" list(fs_data) "}" ;
fs_data : fs_data_attr "=" <STRING>
| mount
;
fs_data_attr
: "fstype" | "opts" | "passno"
| "freq" | "dumpset" | "log"
;
Here, <DEVICE> is the device name of the disk (for example,
`/dev/dsk/2s0'). The device name is used for building the mount maps
and for the `fstab' file. The attributes that can be specified are
shown in the following section.
The FSinfo configuration file for `dylan.doc.ic.ac.uk' is listed
below.
host dylan.doc.ic.ac.uk
fs /dev/dsk/0s0 {
fstype = swap
}
fs /dev/dsk/0s0 {
fstype = hfs
opts = rw,noquota,grpid
passno = 0;
freq = 1;
mount / { }
}
fs /dev/dsk/1s0 {
fstype = hfs
opts = defaults
passno = 1;
freq = 1;
mount /usr {
local {
exportfs "dougal eden dylan zebedee brian"
volname /nfs/hp300/local
}
}
}
fs /dev/dsk/2s0 {
fstype = hfs
opts = defaults
passno = 1;
freq = 1;
mount default {
exportfs "toytown_clients hangers_on"
volname /home/dylan/dk2
}
}
fs /dev/dsk/3s0 {
fstype = hfs
opts = defaults
passno = 1;
freq = 1;
mount default {
exportfs "toytown_clients hangers_on"
volname /home/dylan/dk3
}
}
fs /dev/dsk/5s0 {
fstype = hfs
opts = defaults
passno = 1;
freq = 1;
mount default {
exportfs "toytown_clients hangers_on"
volname /home/dylan/dk5
}
}
Menu
- fstype Option: FSinfo filesystems fstype:
-
- opts Option: FSinfo filesystems opts:
-
- passno Option: FSinfo filesystems passno:
-
- freq Option: FSinfo filesystems freq:
-
- mount Option: FSinfo filesystems mount:
-
- dumpset Option: FSinfo filesystems dumpset:
-
- log Option: FSinfo filesystems log:
-
|