[BACK]Return to showmount.8 CVS log [TXT][DIR] Up to [local] / src / usr.bin / showmount

Annotation of src/usr.bin/showmount/showmount.8, Revision 1.4

1.4     ! mickey      1: .\"    $OpenBSD: showmount.8,v 1.3 1997/07/17 08:05:01 deraadt Exp $
1.1       deraadt     2: .\"    $NetBSD: showmount.8,v 1.5 1995/08/31 22:26:07 jtc Exp $
                      3: .\"
                      4: .\" Copyright (c) 1989, 1991, 1993
                      5: .\"    The Regents of the University of California.  All rights reserved.
                      6: .\"
                      7: .\" This code is derived from software contributed to Berkeley by
                      8: .\" Rick Macklem at The University of Guelph.
                      9: .\"
                     10: .\" Redistribution and use in source and binary forms, with or without
                     11: .\" modification, are permitted provided that the following conditions
                     12: .\" are met:
                     13: .\" 1. Redistributions of source code must retain the above copyright
                     14: .\"    notice, this list of conditions and the following disclaimer.
                     15: .\" 2. Redistributions in binary form must reproduce the above copyright
                     16: .\"    notice, this list of conditions and the following disclaimer in the
                     17: .\"    documentation and/or other materials provided with the distribution.
                     18: .\" 3. All advertising materials mentioning features or use of this software
                     19: .\"    must display the following acknowledgement:
                     20: .\"    This product includes software developed by the University of
                     21: .\"    California, Berkeley and its contributors.
                     22: .\" 4. Neither the name of the University nor the names of its contributors
                     23: .\"    may be used to endorse or promote products derived from this software
                     24: .\"    without specific prior written permission.
                     25: .\"
                     26: .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     27: .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     28: .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     29: .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     30: .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     31: .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     32: .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     33: .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     34: .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     35: .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     36: .\" SUCH DAMAGE.
                     37: .\"
                     38: .\"     @(#)showmount.8        8.3 (Berkeley) 3/29/95
                     39: .\"
                     40: .Dd March 29, 1995
                     41: .Dt SHOWMOUNT 8
                     42: .Os BSD 4
                     43: .Sh NAME
                     44: .Nm showmount
                     45: .Nd show remote nfs mounts on host
                     46: .Sh SYNOPSIS
                     47: .Nm showmount
                     48: .Op Fl ade3
                     49: .Op Ar host
                     50: .Sh DESCRIPTION
                     51: .Nm Showmount
                     52: shows status information about the
                     53: .Tn NFS
                     54: server on
                     55: .Ar host .
                     56: By default it prints the names of all hosts that have
                     57: .Tn NFS
                     58: file systems mounted
                     59: on the host. See
                     60: .%T "NFS: Network File System Protocol Specification" ,
                     61: RFC 1094,
                     62: Appendix A,
                     63: and
                     64: .%T "NFS: Network File System Version 3 Protocol Specification" ,
                     65: Appendix I,
                     66: for a detailed description of the protocol.
                     67: .Bl -tag -width Ds
                     68: .It Fl a
                     69: List all mount points in the form:
                     70: .Bd -ragged -offset indent -compact
                     71: .Ar host : Ns Ar dirpath
                     72: .Ed
                     73: .It Fl d
                     74: List directory paths of mount points instead of hosts
                     75: .It Fl e
                     76: Show the
                     77: .Ar host Ns 's
                     78: exports list
                     79: .It Fl 3
                     80: Use mount protocol Version 3, compatible with NFS Version 3.
                     81: .El
                     82: .Sh SEE ALSO
1.3       deraadt    83: .Xr mount 8 ,
1.1       deraadt    84: .Xr mountd 8
                     85: .Sh BUGS
                     86: The mount daemon running on the server only has an idea of the actual mounts,
                     87: since the
                     88: .Tn NFS
                     89: server is stateless.
                     90: .Nm Showmount
                     91: will only display the information
                     92: as accurately as the mount daemon reports it.
                     93: .Sh HISTORY
                     94: The
                     95: .Nm showmount
1.4     ! mickey     96: utility first appeared in
        !            97: .Bx 4.4 .