Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 09 Aug 1996 14:32:04 +0200
From:      Poul-Henning Kamp <phk@critter.tfs.com>
To:        Robert Withrow <bwithrow@BayNetworks.com>
Cc:        freebsd-hackers@FreeBSD.ORG
Subject:   Re: 2.1.5 Bug: Manual refers to manual refers to manual refers to... 
Message-ID:  <11221.839593924@critter.tfs.com>
In-Reply-To: Your message of "Fri, 09 Aug 1996 08:15:33 EDT." <199608091215.IAA10249@tuva.engeast.baynetworks.com> 

next in thread | previous in thread | raw e-mail | index | archive | help
In message <199608091215.IAA10249@tuva.engeast.baynetworks.com>, Robert Withrow
 writes:
>In 2.1.5, mount(8) says
>
>   The options specific to NFS filesystems are described in the
>   mount_nfs(8) manual page.
>
>mount_nfs(8) says:
>
>  -o      Options are specified with a -o flag followed by a comma separat-
>          ed string of options.  See the mount(8) man page for possible op-
>          tions and their meanings.
>
>So.  I hit ^C.  ;-)
>
>Can someone tell me where to *really* find the nfs mount options?
>

Hmm, could somebody loose this guy ?
He's getting too close for comfort and he's asking too many questions... :-)

>From /usr/src/sbin/mount_nfs/mount_nfs.c:

struct mntopt mopts[] = {
        MOPT_STDOPTS,
        MOPT_FORCE,
        MOPT_UPDATE,
        { "bg", 0, ALTF_BG, 1 },
        { "conn", 1, ALTF_NOCONN, 1 },
        { "dumbtimer", 0, ALTF_DUMBTIMR, 1 },
        { "intr", 0, ALTF_INTR, 1 },
#ifdef NFSKERB
        { "kerb", 0, ALTF_KERB, 1 },
#endif
        { "nfsv3", 0, ALTF_NFSV3, 1 },
        { "rdirplus", 0, ALTF_RDIRPLUS, 1 },
        { "mntudp", 0, ALTF_MNTUDP, 1 },
        { "resvport", 0, ALTF_RESVPORT, 1 },
#ifdef ISO
        { "seqpacket", 0, ALTF_SEQPACKET, 1 },
#endif
        { "nqnfs", 0, ALTF_NQNFS, 1 },
        { "soft", 0, ALTF_SOFT, 1 },
        { "tcp", 0, ALTF_TCP, 1 },
        { "port=", 0, ALTF_PORT, 1 },
        { NULL }
};



--
Poul-Henning Kamp           | phk@FreeBSD.ORG       FreeBSD Core-team.
http://www.freebsd.org/~phk | phk@login.dknet.dk    Private mailbox.
whois: [PHK]                | phk@ref.tfs.com       TRW Financial Systems, Inc.
Future will arrive by its own means, progress not so.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?11221.839593924>