From owner-freebsd-questions@FreeBSD.ORG Tue May 12 12:46:11 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C34B81065673 for ; Tue, 12 May 2009 12:46:11 +0000 (UTC) (envelope-from martinbadie@yahoo.com) Received: from n4b.bullet.mail.ac4.yahoo.com (n4b.bullet.mail.ac4.yahoo.com [76.13.13.74]) by mx1.freebsd.org (Postfix) with SMTP id 7AD6F8FC16 for ; Tue, 12 May 2009 12:46:11 +0000 (UTC) (envelope-from martinbadie@yahoo.com) Received: from [76.13.13.25] by n4.bullet.mail.ac4.yahoo.com with NNFMP; 12 May 2009 12:33:00 -0000 Received: from [76.13.10.167] by t4.bullet.mail.ac4.yahoo.com with NNFMP; 12 May 2009 12:33:00 -0000 Received: from [127.0.0.1] by omp108.mail.ac4.yahoo.com with NNFMP; 12 May 2009 12:33:00 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 519203.90724.bm@omp108.mail.ac4.yahoo.com Received: (qmail 97235 invoked by uid 60001); 12 May 2009 12:33:00 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1242131580; bh=JN/TFGhSDnIg8dFIz1VsvsQnhRFu/xcst9AMnZq4KBs=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=iwSGZaDSLAg+V5Hw09xHOKiQ4XbcAODsE7myTnxXbOnLLZUCTgpiB3fda4t0BTsvN1OQlCoOzCbLrK7hINWeHzqD1xRiAZksjE65HQZLvV3pTQCGpCr6ujKAINZfJS5i3iqJaCSHYgSjT5cPR6VPhNrNQi9HQFxEaKC0+tiZjZw= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=PbjyMYA76DOzWraQiUJEB+9IgkUBwEUsHu/RJqfOjje2p1sDG7xPy6tqoSif1/BvcQrWbKb682KYBrLEKoW6KztVSPEToI8hfbuYvf1fs6kQa7BP3J3E7byjDOKRqBSsJgNY2uE8fXD2Hy8VZnWIzbjY4dK8P/uaPW7svcxa4qI=; Message-ID: <312995.95999.qm@web59916.mail.ac4.yahoo.com> X-YMail-OSG: LYrbkwkVM1mh5BEHVYRhQ3kkIUDWNeKAB7_x8KYRCMAFEQ9PhUqxKUB2URsK77HamN3W58humt7BPwNrITx4LAVank0BdpJ7Cczsky24U0IXYhrxLzMAUDaCqhPOTojFkoZc9h2A0yE6UGEznt3aGKftcFoqIcOpcxI01C_mVTRBJO0DNVOqQlSjwjpLGsBvW3oV5JMrSM0kvJIbpv18q_ydCmVWqig.uykDzgs7rSz_rjVdfhsZyRglEymXmuEdfSVQOz2bx7KoReS_w0pQTnuL2r21TZyP7HWlm2u1YgFV7vE3Og-- Received: from [212.156.51.22] by web59916.mail.ac4.yahoo.com via HTTP; Tue, 12 May 2009 05:33:00 PDT X-Mailer: YahooMailRC/1277.35 YahooMailWebService/0.7.289.1 Date: Tue, 12 May 2009 05:33:00 -0700 (PDT) From: Martin Badie To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: mount_nfs and fstab options X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 May 2009 12:46:12 -0000 Hi, I have mounted an NFS share like: mount_nfs -LisT 10.10.10.199:/vol/share /mnt but I can't use -LisT on fstab because man mount_nfs states: Historic -o Options Use of these options is deprecated, they are only mentioned here for compatibility with historic versions of mount_nfs. bg Same as -b. fg Same as not specifying -b. conn Same as not specifying -c. dumbtimer Same as -d. intr Same as -i. lockd Same as not specifying -L. nfsv2 Same as -2. nfsv3 Same as -3. rdirplus Same as -l. mntudp Same as -U. resvport Same as -P. soft Same as -s. hard Same as not specifying -s. tcp Same as -T. Thus since I can't give this in -o section at fstab how can I use -List at fstab .. I have used rw,lockd,intr,soft,tcp but that didn't work: 10.10.10.199:/vol/share /mnt nfs rw,lockd,intr,soft,tcp 0 0 Regards.