From owner-freebsd-current@FreeBSD.ORG Wed Jul 6 21:21:55 2005 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB45F16A41C for ; Wed, 6 Jul 2005 21:21:55 +0000 (GMT) (envelope-from geekout@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4884943D55 for ; Wed, 6 Jul 2005 21:21:55 +0000 (GMT) (envelope-from geekout@gmail.com) Received: by wproxy.gmail.com with SMTP id 67so54478wri for ; Wed, 06 Jul 2005 14:21:54 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=KVer0zfrn0yVntx38hK8U4mDJ5UpkE9p7B6O52oyPdsVu5LhkWxXXnfuBB0H9yE4GFUHiczVal6eMI4MTXCPiidAN2wHxd434Tor/jpD8dEPG190yCDfq9PtddlVZSQmGtSPDsRTdzfadhRKHXv6jtuy15ZrUaqWMXEPoNL0P0w= Received: by 10.54.47.44 with SMTP id u44mr116161wru; Wed, 06 Jul 2005 14:21:54 -0700 (PDT) Received: by 10.54.46.16 with HTTP; Wed, 6 Jul 2005 14:21:54 -0700 (PDT) Message-ID: <6e01203b050706142126e3a247@mail.gmail.com> Date: Wed, 6 Jul 2005 15:21:54 -0600 From: Tyler Gee To: Oliver Lehmann In-Reply-To: <20050706231257.3cc74149.lehmann@ans-netz.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20050706224138.46789a5c.lehmann@ans-netz.de> <6e01203b050706134921406993@mail.gmail.com> <20050706231257.3cc74149.lehmann@ans-netz.de> Cc: freebsd-current@freebsd.org Subject: Re: NTFS writing doesn't work on CURRENT(?) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tyler Gee List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2005 21:21:55 -0000 > /mnt/tmp is the root directory (my mountpoint) I'm quite shure it > exists ;) But does /mnt/tmp/hugo exist? You are trying to copy the directory, not the directory contents, but that directory doesn't exist on your NTFS partition and it will not create it. Either: cp -r /hugo /mnt/tmp -or- mkdir /mnt/tmp/hugo cp /hugo/* /mnt/tmp/hugo P.S. If this is not your problem and I am way off you can just ignore me. := ) -wtgee