From owner-freebsd-questions@FreeBSD.ORG Fri Oct 12 14:46:55 2007 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 D755F16A468 for ; Fri, 12 Oct 2007 14:46:55 +0000 (UTC) (envelope-from jamesh@lanl.gov) Received: from mailwasher.lanl.gov (mailwasher.lanl.gov [204.121.3.2]) by mx1.freebsd.org (Postfix) with ESMTP id 8C34113C4BD for ; Fri, 12 Oct 2007 14:46:55 +0000 (UTC) (envelope-from jamesh@lanl.gov) Received: from mailrelay3.lanl.gov (mailrelay3.lanl.gov [128.165.4.104]) by mailwasher.lanl.gov (8.13.8/8.13.8/(ccn-5)) with ESMTP id l9CEksKW011821; Fri, 12 Oct 2007 08:46:54 -0600 Received: from oppie-mail.lanl.gov (oppie-mail.lanl.gov [128.165.4.123]) by mailrelay3.lanl.gov (8.13.8/8.13.8/(ccn-5)) with ESMTP id l9CEkqNN018879; Fri, 12 Oct 2007 08:46:52 -0600 Received: from [128.165.86.10] (secretariat.lanl.gov [128.165.86.10]) by oppie-mail.lanl.gov (Postfix) with ESMTP id 53B021F8002; Fri, 12 Oct 2007 08:46:49 -0600 (MDT) From: James To: Monah Baki In-Reply-To: <3236.67.100.188.210.1192191787.squirrel@www.geekisp.com> References: <3236.67.100.188.210.1192191787.squirrel@www.geekisp.com> Organization: Los Alamos National Laboratories Date: Fri, 12 Oct 2007 08:47:26 -0600 Message-Id: <1192200446.33933.51.camel@secretariat.lanl.gov> Mime-Version: 1.0 X-Mailer: Evolution 2.10.3 FreeBSD GNOME Team Port X-CTN-5-MailScanner-Information: Please see http://network.lanl.gov/email/virus-scan.php X-CTN-5-MailScanner: Found to be clean X-CTN-5-MailScanner-From: jamesh@lanl.gov X-Spam-Status: No Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: 1 TB data copy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jamesh@lanl.gov List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2007 14:46:56 -0000 On Fri, 2007-10-12 at 08:23 -0400, Monah Baki wrote: > Hi all, > > We have a windows 2003 server and 1 freebsd 6.2 server. The 2003 server > supports USB 1 while the freebsd supports usb 2. > We went and purchased an external 1 TB usb 2 harddrive. > Our objective is to copy 700GB worth of data from the windows to the freebsd > server then take the external harddive to a remote client who runs windows > 2003 and then copy the data back to the windows server. What's the connection between your windows 2003 server and your freebsd server? Is the data 1 single file, or is it numerous small files? I'm understanding that the reason you want to involve FreeBSD at all is that it has faster write to the USB hard drive, yeah? If you have any kind of network access between the two machines, and it's small files, use rsync to copy data from windows to the FreeBSD box (which will probably involve installing cygwin on the windows box - relatively painless) . If that's not an option, consider physically removing the hard drive from the windows 2003 box, carrying it over to the FreeBSD box and mounting the drive and then just copy the data onto the hard drive using FAT as the destination file system, assuming it's not one large file. If it *is* one large file, you could use the programs other folks have recommended for NTFS read/write under FreeBSD. Another option would be to spend $20 on a usb 2 PCI card - http://www.amazon.com/s/ref=nb_ss_e/103-8650702-2329464?initialSearch=1&url=search-alias%3Delectronics&field-keywords=usb+2.0+pci&Go.x=0&Go.y=0&Go=Go Should also be available from your local electronics retailer. Install that in the windows box and use the now native USB 2.0 connection to dump the data. James