From owner-freebsd-questions@FreeBSD.ORG Wed Oct 21 03:14:32 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 4A8AD1065692 for ; Wed, 21 Oct 2009 03:14:32 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from mail-yw0-f178.google.com (mail-yw0-f178.google.com [209.85.211.178]) by mx1.freebsd.org (Postfix) with ESMTP id 0002B8FC13 for ; Wed, 21 Oct 2009 03:14:31 +0000 (UTC) Received: by ywh8 with SMTP id 8so5559774ywh.3 for ; Tue, 20 Oct 2009 20:14:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=hXDK0ROL5pWkhQxRNjvOfjTuZkNxTPqb+vYecqQc9ew=; b=W6fziG5HU6Rs5iJOi98hRTOTIkYH6rvo5OVMzbDgvHThv5VgQqVlEP4mH2hWyGR1jV WZp8i5TQ9K3QvYUCoWFndCgEwlTyCFSUoCxyL2XbaFxJ9DwlWVCcdT+qR3/4EWsSgOHN gkOn7Cp93F4DO7ykW9IEvztcpsbH6CorOCq5I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=FUJXynkNbi7KgA9RGW8FdbX7nbvlvtrJms2hSPOyZ9eIvg04JwoLYqIF6foINg4yBi vH53P8XHK0/7dRrWZJjNWsUFUKml7mACp4/w0YAIVKTmagQrF6VauxPQL/9QpiTOd/6j mXQfP6AMuLzZh8q+UOj6bqfAQ+263nhEICoC8= MIME-Version: 1.0 Received: by 10.90.42.9 with SMTP id p9mr7824469agp.4.1256094871212; Tue, 20 Oct 2009 20:14:31 -0700 (PDT) In-Reply-To: References: Date: Tue, 20 Oct 2009 23:14:31 -0400 Message-ID: From: "illoai@gmail.com" To: Jeronimo Calvo Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Questions Subject: Re: Error when changin from -ro to rw on /etc/exports, FREEBSD STABLE 7.2 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: Wed, 21 Oct 2009 03:14:32 -0000 2009/10/20 Jeronimo Calvo : > I'm wondering if that /etc/exports format will work: > > /DATA1 =A0 192.168.11.6(rw) > /DATA2 =A0 192.168.11.6(rw) > > or needs to be like this? > >> [root@ /DATA1]# cat /etc/exports >> /DATA1 =A0-rw 192.168.11.6 >> /DATA2 =A0-rw 192.168.11.6 Try it without the "-rw" at all, as according to man 5 exports read/write is the default, and no read/write flag is given. I believe you will have to specify permissions (via the -maproot or -mapall options) or make the exported filesystems writable by "nobody" (uid 65534) to actually use the write functionality. Good luck. --=20 --