From owner-freebsd-questions@FreeBSD.ORG Thu Aug 9 11:12:47 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 43D93106564A for ; Thu, 9 Aug 2012 11:12:47 +0000 (UTC) (envelope-from jeff.t@mail.com) Received: from mailout-us.mail.com (mailout-us.mail.com [74.208.122.35]) by mx1.freebsd.org (Postfix) with SMTP id D8F6E8FC08 for ; Thu, 9 Aug 2012 11:12:46 +0000 (UTC) Received: (qmail invoked by alias); 09 Aug 2012 11:12:45 -0000 Received: from unknown (EHLO blazon-pc.runningwild.local) [78.84.105.231] by mail.gmx.com (mp-us011) with SMTP; 09 Aug 2012 07:12:45 -0400 X-Authenticated: #76218138 X-Provags-ID: V01U2FsdGVkX18eJ+kjsOoeu3kfrrbwqAdK5fiQaBZhKlxxy/oKGQ ncqngb5LuseuGI Message-ID: <50239B2A.5050701@mail.com> Date: Thu, 09 Aug 2012 14:12:42 +0300 From: Jeff Tipton User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:9.0) Gecko/20111229 Thunderbird/9.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <502392FE.5030903@eskk.nu> In-Reply-To: <502392FE.5030903@eskk.nu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Subject: Re: Can't write to NTFS file system 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: Thu, 09 Aug 2012 11:12:47 -0000 On 08/09/2012 13:37, Leslie Jensen wrote: > Hi List. > > > I'm using > > fusefs_enable="YES" > > in /etc/rc.conf > > And > > /dev/ad4s2 /home/mnt/windows ntfs rw,noauto 0 0 > > in /etc/fstab > > I can read the NTFS file system and copy from it but I can't copy to it. > > When I try copying I get > > "No such file or directory" > > Is that default behaviour? > > Thanks > > /Leslie > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" I think your /etc/fstabrecord should rather be: /dev/ad4s2 /home/mnt/windows ntfs-3g rw 0 0 The "ntfs" is not from the FUSE project, it's native and read-only. And the "noauto" is for keeping the file system from being mounted automatically at boot. -Jeff