Is there some file in Linux that enumerates and describes mount options for file systems like /etc/services describes ports?
|
|
If you're asking for "Which filesystems are mounted, and how are they mounted?", the answer can be found by either reading /proc/mounts or running 'mount'. If you're asking which mount options you have available for the different file systems, you need to check the man page for mount (mount(8)) - it has one section titled "FILESYSTEM SPECIFIC MOUNT OPTIONS", and one titled "FILESYSTEM INDEPENDENT MOUNT OPTIONS" which should give you a pretty good idea of what mount options are available and what they do. |
|||
|
|
There is no machine-parsable file like The most accessible human-readable documentation is the man page for the Sometimes though the |
|||
|
|